]> code.ossystems Code Review - openembedded-core.git/commitdiff
Revert "kernel: restore scripts in the sysroot"
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 27 Nov 2013 13:44:59 +0000 (13:44 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 27 Nov 2013 14:28:43 +0000 (14:28 +0000)
This reverts commit 6a6735cb98d529c8c5376aedb5c951339f54fe96.

The module class already ensures the scripts are rebuilt correctly. Running
this at sstate installation time is problematic since it can require the
cross compiler. Adding such a dependency would cause issues of its own.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/kernel.bbclass

index 4974507a94271e612f8f9bb9c2bf942fd1a52e78..24ac7786db6dd491fe49d6895658705f7245deae 100644 (file)
@@ -290,17 +290,6 @@ kernel_do_install() {
 }
 do_install[prefuncs] += "package_get_auto_pr"
 
-
-SSTATEPOSTINSTFUNCS += "kernelscripts_sstate_postinst"
-kernelscripts_sstate_postinst () {
-       if [ "${BB_CURRENTTASK}" = "populate_sysroot" -o "${BB_CURRENTTASK}" = "populate_sysroot_setscene" ]; then
-               ( 
-                 cd ${STAGING_KERNEL_DIR}
-                 oe_runmake scripts
-               )
-       fi
-}
-
 python sysroot_stage_all () {
     oe.path.copyhardlinktree(d.expand("${D}${KERNEL_SRC_PATH}"), d.expand("${SYSROOT_DESTDIR}${KERNEL_SRC_PATH}"))
 }