diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2006-04-29 22:16:05 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-04-29 22:16:05 +0000 |
commit | fb4bf48db5e1a3bed0ef9e490656357c70ae2088 (patch) | |
tree | 7c9cdea26321ccea1944d0774df8ec3157f83c3a /packages/linux/mnci-ramses_2.4.21-rmk2-pxa1.bb | |
parent | a3c05f2af07d2c0b02c74667f00d2d6045a4bb72 (diff) |
Install depmod-2.4 and depmod-2.6 in cross staging instead of plain depmod so 2.4 and 2.6 kernel builds can coexist with multimachine (bug 581)
Diffstat (limited to 'packages/linux/mnci-ramses_2.4.21-rmk2-pxa1.bb')
-rw-r--r-- | packages/linux/mnci-ramses_2.4.21-rmk2-pxa1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/linux/mnci-ramses_2.4.21-rmk2-pxa1.bb b/packages/linux/mnci-ramses_2.4.21-rmk2-pxa1.bb index 5e562798de..76e1769e31 100644 --- a/packages/linux/mnci-ramses_2.4.21-rmk2-pxa1.bb +++ b/packages/linux/mnci-ramses_2.4.21-rmk2-pxa1.bb @@ -58,7 +58,7 @@ pkg_postinst_kernel () { pkg_postinst_modules () { if [ -n "$D" ]; then - ${HOST_PREFIX}depmod -A -b $D -F $D/boot/System.map-${PV} ${KERNEL_VERSION} + ${HOST_PREFIX}depmod-${KERNEL_MAJOR_VERSION} -A -b $D -F $D/boot/System.map-${PV} ${KERNEL_VERSION} else depmod -A fi |