diff options
author | Nigel Kostiuck <emte@labotomy.net> | 2004-12-09 22:29:30 +0000 |
---|---|---|
committer | Nigel Kostiuck <emte@labotomy.net> | 2004-12-09 22:29:30 +0000 |
commit | 9f29948adec0e69b5ec47b712f99b8e9cba52e6f (patch) | |
tree | 82b22116050c768bc2737518fe906313fc7de715 /packages/linux/linux-mtx-1_2.4.27.bb | |
parent | 85f320d50f9756d1a4e63774721796410e79e433 (diff) |
Merge bk://oe-devel@oe-devel.bkbits.net/openembedded
into t.(none):/home/OE/speedracer/packages
2004/12/09 16:29:29-06:00 ti.com!kergoth
In some kernel packages, move the set of PACKAGE_ARCH to below the inherit of kernel.
BKrev: 41b8d1capsuSJAmgsLcGU1QsukrfIA
Diffstat (limited to 'packages/linux/linux-mtx-1_2.4.27.bb')
-rw-r--r-- | packages/linux/linux-mtx-1_2.4.27.bb | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/packages/linux/linux-mtx-1_2.4.27.bb b/packages/linux/linux-mtx-1_2.4.27.bb index e69de29bb2..194cb58306 100644 --- a/packages/linux/linux-mtx-1_2.4.27.bb +++ b/packages/linux/linux-mtx-1_2.4.27.bb @@ -0,0 +1,64 @@ +DESCRIPTION = "Linux kernel for MTX-1 (MeshCube)" +MAINTAINER = "Bruno Randolf <bruno.randolf@4g-systems.biz>" +HOMEPAGE = "http://meshcube.org/meshwiki/" +LICENSE = "GPL" +KV = "${PV}" +PR = "r1" +RDEPENDS = "mtd" + +SRC_URI = "cvs://cvs@ftp.linux-mips.org/home/cvs;module=linux;tag=linux_2_4_27 \ + file://01-mtd-2004-01-27.diff;patch=1 \ + file://02-mtd-mtx-1-map.diff;patch=1 \ + file://03-mtd-erase-compiler-bug.diff;patch=1 \ + file://04-mtx-1-board-reset.diff;patch=1 \ + file://05-mtx-1-pci-irq.diff;patch=1 \ + file://06-zboot-2.4.26.patch;patch=1 \ + file://07-zboot-zimage-flash-bin.diff;patch=1 \ + file://08-usb-nonpci-2.4.24.patch;patch=1 \ + file://09-au1000-eth-vlan.diff;patch=1 \ + file://10-iw-max-spy-32.diff;patch=1 \ + file://11-mtd-proc-partition-rw.diff;patch=1 \ + file://12-openswan-2.2.0-nat-t.diff;patch=1 \ + file://13-openswan-2.2.0.patch;patch=1 \ + file://14-au1000-eth-link-beat.diff;patch=1 \ + file://15-au1000-pci-fixup-non-coherent-pre-ac.diff;patch=1 \ + file://defconfig-mtx-1" + +S = "${WORKDIR}/linux" + +inherit kernel + +PACKAGE_ARCH = "mtx-1" +ARCH = "mips" +KERNEL_OUTPUT = "arch/mips/zboot/images/mtx-1.flash.bin" +KERNEL_IMAGETYPE = "zImage.flash" +KERNEL_IMAGEDEST = "tmp" + +do_configure_prepend() { + install -m 0644 ${WORKDIR}/defconfig-mtx-1 ${S}/.config +} + +pkg_postinst_kernel() { +if test "x$D" != "x"; then + exit 1 +else + if test -e /tmp/zImage.flash-${KV}; then + echo "*** flashing kernel ***" + flashcp -v /tmp/zImage.flash-${KV} /dev/mtd/2 + echo "*** done. please reboot ***" + fi +fi +} + +FILES_kernel += " /tmp" + +do_deploy() { + install -d ${DEPLOY_DIR}/images + install -m 0644 arch/mips/zboot/images/mtx-1.flash.bin ${DEPLOY_DIR}/images/${MACHINE}-${KV}-${DATETIME}.flash.bin + install -m 0644 arch/mips/zboot/images/mtx-1.flash.srec ${DEPLOY_DIR}/images/${MACHINE}-${KV}-${DATETIME}.flash.srec + install -m 0644 arch/mips/zboot/images/mtx-1.srec ${DEPLOY_DIR}/images/${MACHINE}-${KV}-${DATETIME}.ram.srec +} + +do_deploy[dirs] = "${S}" + +addtask deploy before do_build after do_compile |