diff options
author | Koen Kooi <koen@openembedded.org> | 2010-05-20 11:10:12 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-05-20 13:06:02 +0200 |
commit | 7425e92b1c7918c8c3b609950dbdb44dd488f1fe (patch) | |
tree | 218b5224aca6fcd19f4f640f992dbedf4e30a9cf /classes | |
parent | 039497007619829f936a63643b331d2b1d7429ad (diff) |
kernel bbclass: switch to u-boot-mkimage-native
This is a long demanded change. The u-boot-mkimage is up to date to OE standards, while the openmoko one is not
Diffstat (limited to 'classes')
-rw-r--r-- | classes/kernel.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/kernel.bbclass b/classes/kernel.bbclass index a157dfc0e9..b0c65346f0 100644 --- a/classes/kernel.bbclass +++ b/classes/kernel.bbclass @@ -14,7 +14,7 @@ python __anonymous () { kerneltype = bb.data.getVar('KERNEL_IMAGETYPE', d, 1) or '' if kerneltype == 'uImage': depends = bb.data.getVar("DEPENDS", d, 1) - depends = "%s u-boot-mkimage-openmoko-native" % depends + depends = "%s u-boot-mkimage-native" % depends bb.data.setVar("DEPENDS", depends, d) image = bb.data.getVar('INITRAMFS_IMAGE', d, True) |