diff options
author | Koen Kooi <koen@openembedded.org> | 2007-12-26 12:36:33 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-12-26 12:36:33 +0000 |
commit | 219d38d250cddc81204428656918bd09ad3d9cfe (patch) | |
tree | 34a5fea2390c8943d505b4a48221f1f8b7b5c682 /packages | |
parent | 6bbbf4ddc955a0880178cf4126ac920b21fa2fd8 (diff) |
linux-dht-walnut: switch to uImage
Diffstat (limited to 'packages')
-rw-r--r-- | packages/linux/linux-dht-walnut_2.6.20.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/linux/linux-dht-walnut_2.6.20.bb b/packages/linux/linux-dht-walnut_2.6.20.bb index 8c1d2b85e1..61836ac204 100644 --- a/packages/linux/linux-dht-walnut_2.6.20.bb +++ b/packages/linux/linux-dht-walnut_2.6.20.bb @@ -18,7 +18,6 @@ FILES_kernel-image = "/boot/zImage.elf" export OS = "Linux" ARCH = "ppc" -KERNEL_OUTPUT = "arch/ppc/boot/images/zImage.elf" do_stage_append () { #need ppc platforms includes + friends in order for external kernel modules to compile as headers as still split @@ -33,8 +32,11 @@ do_stage_append () { do_install_append () { install -d ${DEPLOY_DIR_IMAGE} - install -m 0755 arch/ppc/boot/images/zImage.elf \ + if [ -e arch/ppc/boot/images/zImage.elf ] ; then + cp -a arch/ppc/boot/images/zImage.elf arch/ppc/boot/images/zImage + install -m 0755 arch/ppc/boot/images/zImage.elf \ ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-${PV}-${MACHINE}-${DATETIME}.elf + fi install -m 0755 vmlinux ${DEPLOY_DIR_IMAGE}/ } |