aboutsummaryrefslogtreecommitdiffstats
path: root/native/native-kernel.oe
blob: c8599f8d2bfeb17548a549fc343102e2b2a471d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
SECTION = "base"
COMPATIBLE_HOST = "${BUILD_SYS}"

PROVIDES = "virtual/kernel"

do_stage() {
	install -d ${STAGING_KERNEL_DIR}/include/
	install -m 0755 /usr/include/linux/wireless.h ${STAGING_KERNEL_DIR}/include/wireless.h
	echo `uname -r` >${STAGING_KERNEL_DIR}/kernel-abiversion
	echo /usr/src/linux >${STAGING_KERNEL_DIR}/kernel-source
	echo >${STAGING_KERNEL_DIR}/kernel-ccsuffix
	echo >${STAGING_KERNEL_DIR}/kernel-ldsuffix
}