aboutsummaryrefslogtreecommitdiffstats
path: root/classes/kernel.bbclass
diff options
context:
space:
mode:
authornslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net>2005-01-16 15:40:08 +0000
committernslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net>2005-01-16 15:40:08 +0000
commitd1afa39cedb38baa8896661dc614f9cf49379bd7 (patch)
treea5b3f4878c0f816165fada7f287b6e26b6d6cd89 /classes/kernel.bbclass
parent2e131be3b12703e3103d9f354ace459073dc13b8 (diff)
downloadopenembedded-d1afa39cedb38baa8896661dc614f9cf49379bd7.tar.gz
Merge bk://oe-devel.bkbits.net/openembedded
into bkbits.net:/repos/n/nslu2-linux/openembedded 2005/01/16 15:27:45+00:00 nexus.co.uk!pb Merge bk://oe-devel@oe-devel.bkbits.net/openembedded into stealth.nexus.co.uk:/home/pb/oe/oe 2005/01/16 15:27:32+00:00 nexus.co.uk!pb apply pcmcia-cs patch from Florian Boor to disable bogus /etc/fstab additions for ide devices 2005/01/16 16:09:25+01:00 uni-frankfurt.de!mickeyl openzaurus-pxa-2.6.conf: +udev +sysfsutils -chkhinge 2005/01/16 16:10:16+01:00 vanille.de!mickeyl kernel.bbclass: compile genksyms a bit later in the process BKrev: 41ea8ad8khNLy9Au5Nikuh759HWW4w
Diffstat (limited to 'classes/kernel.bbclass')
-rw-r--r--classes/kernel.bbclass11
1 files changed, 7 insertions, 4 deletions
diff --git a/classes/kernel.bbclass b/classes/kernel.bbclass
index ad263d6d31..36d004bfe5 100644
--- a/classes/kernel.bbclass
+++ b/classes/kernel.bbclass
@@ -86,10 +86,6 @@ kernel_do_stage() {
install -m 0644 ${KERNEL_OUTPUT} ${STAGING_KERNEL_DIR}/${KERNEL_IMAGETYPE}
install -m 0644 System.map ${STAGING_KERNEL_DIR}/System.map-${PV}
- # Check if scripts/genksyms exists and if so, build it
- if [ -e scripts/genksyms/ ]; then
- oe_runmake SUBDIRS="scripts/genksyms"
- fi
cp -fR scripts ${STAGING_KERNEL_DIR}/
}
@@ -107,6 +103,13 @@ kernel_do_install() {
install -m 0644 System.map ${D}/boot/System.map-${PV}
install -m 0644 .config ${D}/boot/config-${PV}
install -d ${D}/etc/modutils
+
+ # Check if scripts/genksyms exists and if so, build it
+ if [ -e scripts/genksyms/ ]; then
+ oe_runmake SUBDIRS="scripts/genksyms"
+ fi
+
+ cp -fR scripts ${STAGING_KERNEL_DIR}/
}
kernel_do_configure() {