diff options
author | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2008-01-31 21:24:36 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2008-01-31 21:24:36 +0000 |
commit | b20edcd38445574cbdd667d5e82fb59572e4cab2 (patch) | |
tree | 5a52d1265144694e035f2087d0495c83b69f5c9a /packages/linux/linux-dht-walnut_2.6.23.bb | |
parent | 64529f883fb70f97a28cb8fe082fb7b357d509d9 (diff) | |
parent | d8918d114e1286ff97435a543b65d270e79a0f92 (diff) |
merge of '4ea5971c2dd26e9c357b906128f0e339d80e3d50'
and 'e651c4fa9a5d1fc6120cc2309e9cba1388cecc52'
Diffstat (limited to 'packages/linux/linux-dht-walnut_2.6.23.bb')
-rw-r--r-- | packages/linux/linux-dht-walnut_2.6.23.bb | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/packages/linux/linux-dht-walnut_2.6.23.bb b/packages/linux/linux-dht-walnut_2.6.23.bb new file mode 100644 index 0000000000..181488190e --- /dev/null +++ b/packages/linux/linux-dht-walnut_2.6.23.bb @@ -0,0 +1,56 @@ +# Copyright (C) 2007, Stelios Koroneos - Digital OPSiS, All Rights Reserved +# Released under the MIT license (see packages/COPYING) +require linux.inc + +DESCRIPTION = "Linux kernel for DHT-Walnut (ppc) machine" + +DEFAULT_PREFERENCE = "-1" + +PR = "r0" +DEPENDS = "u-boot" + +COMPATIBLE_MACHINE = "dht-walnut" + +SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2 \ + file://defconfig" + +S = "${WORKDIR}/linux-${PV}" + +FILES_kernel-image = "/boot/zImage.elf" + +export OS = "Linux" +ARCH = "ppc" + +do_stage_append () { +#need ppc platforms includes + friends in order for external kernel modules to compile as headers as still split + + install -d ${STAGING_KERNEL_DIR}/arch/ + cp -pPR arch/ppc ${STAGING_KERNEL_DIR}/arch/ + cp -pPR arch/powerpc ${STAGING_KERNEL_DIR}/arch/ + + cp -pPR include/asm-powerpc ${STAGING_KERNEL_DIR}/include/ + cp -pPR include/asm-ppc ${STAGING_KERNEL_DIR}/include/ +} + +do_install_append () { + install -d ${DEPLOY_DIR_IMAGE} + 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}/ +} + + +pkg_postinst_kernel () { + true +} + +pkg_postrm_kernel () { + true +} + + + + |