diff options
author | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2008-09-04 14:13:19 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2008-09-04 14:13:19 +0000 |
commit | 0178664658bee88774d50d91b82a4c66b016ac24 (patch) | |
tree | a6a5dbea639e536520ef6151e8ae1d84ebd80b22 /conf/machine/include/zaurus-2.6.inc | |
parent | a725a7c22ca754d424c063548906cc74f01ed035 (diff) | |
parent | 3552e0f5cb9c6e751c3e9100d7a897e78c2f2ad3 (diff) |
merge of '244286eadcc7cfd8932af0a70fb3705f269670d4'
and 'a4756265268a114b43a67457632e11ecf67f7b8a'
Diffstat (limited to 'conf/machine/include/zaurus-2.6.inc')
-rw-r--r-- | conf/machine/include/zaurus-2.6.inc | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/conf/machine/include/zaurus-2.6.inc b/conf/machine/include/zaurus-2.6.inc index c16707be84..5e8f34fad6 100644 --- a/conf/machine/include/zaurus-2.6.inc +++ b/conf/machine/include/zaurus-2.6.inc @@ -52,10 +52,10 @@ zaurus_make_installkit () { mkdir ${IMAGE_NAME}-installkit/ # Get the latest kernel using the zImage-<machine>.bin symlink - if [ "${MACHINE}" = "collie" ]; then - [ -f "zImage-${MACHINE}-kexecboot.bin" ] && cp zImage-${MACHINE}-kexecboot.bin ${IMAGE_NAME}-installkit/zImage + if [ "${@base_contains('MACHINE_FEATURES', 'kexecboot', 'true', 'false',d)}" ]; then + [ -f "zImage-kexecboot-${MACHINE}.bin" ] && cp zImage-kexecboot-${MACHINE}.bin ${IMAGE_NAME}-installkit/zImage # we need also tgz for mmc or cf cards - cp ${IMAGE_NAME}.rootfs.tar.gz ${IMAGE_NAME}-installkit/hdimage1.tgz + cp ${IMAGE_NAME}.rootfs.tar.gz ${IMAGE_NAME}-installkit/image.tgz else cp zImage-${MACHINE}.bin ${IMAGE_NAME}-installkit/zImage fi @@ -79,6 +79,5 @@ zaurus_make_installkit () { # Don't include kernels in standard images for Zaurus machines RDEPENDS_kernel-base = "" -# collie is an exception. We use mmc as root, include kernel and use another small kernel to boot it. -RDEPENDS_kernel-base_collie = "kernel-image" + KERNEL_IMAGETYPE ?= "zImage" |