diff options
Diffstat (limited to 'native')
-rw-r--r-- | native/native-kernel.oe | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/native/native-kernel.oe b/native/native-kernel.oe index e69de29bb2..513f3d1268 100644 --- a/native/native-kernel.oe +++ b/native/native-kernel.oe @@ -0,0 +1,12 @@ + +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 +} + |