From: Koen Kooi Date: Thu, 20 May 2010 09:10:12 +0000 (+0200) Subject: kernel bbclass: switch to u-boot-mkimage-native X-Git-Tag: sz_173~5 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2d027272339eb37716c515944d731eb6f33b7033;p=openembedded.git 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 --- diff --git a/classes/kernel.bbclass b/classes/kernel.bbclass index 69ab422c43..353b74976c 100644 --- a/classes/kernel.bbclass +++ b/classes/kernel.bbclass @@ -11,7 +11,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)