diff options
author | Jonathan McDowell <noodles@earth.li> | 2006-05-20 16:51:27 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-05-20 16:51:27 +0000 |
commit | 496f877347fd9ff833d20a495999493fef0334c9 (patch) | |
tree | 4063239f272edcad4438d10b619a2041ed9d4801 /packages/linux/linux-amsdelta-2.6_2.6.16-omap2.bb | |
parent | d9d5b624dc4985182e17dd14c1894923ddfef8ff (diff) |
base-files, linux-amsdelta-2.6, u-boot: Add support for Amstrad Delta (E3)
This adds support for the Amstrad E3 Videophone (codename Delta). This is
an OMAP5910 based device with 32MB SDRAM, 32MB NAND flash and a 480x320
DSTN screen. Most of the work for this support is by David Ford
<david.ford@hu.gs> with some minor cleanups by me.
Diffstat (limited to 'packages/linux/linux-amsdelta-2.6_2.6.16-omap2.bb')
-rw-r--r-- | packages/linux/linux-amsdelta-2.6_2.6.16-omap2.bb | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/packages/linux/linux-amsdelta-2.6_2.6.16-omap2.bb b/packages/linux/linux-amsdelta-2.6_2.6.16-omap2.bb new file mode 100644 index 0000000000..d2f8faa032 --- /dev/null +++ b/packages/linux/linux-amsdelta-2.6_2.6.16-omap2.bb @@ -0,0 +1,42 @@ +SECTION = "kernel" +DESCRIPTION = "2.6 Linux kernel for the Amstrad Delta (E3)" +LICENSE = "GPL" +MAINTAINER = "Jonathan McDowell <noodles@earth.li>" + +SRC_URI = "ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.16.tar.bz2 \ + http://www.muru.com/linux/omap/patches/patch-2.6.16-omap2.bz2;patch=1 \ + http://the.earth.li/pub/e3/2.6.16/00-ams-delta-backlight.diff;patch=1 \ + http://the.earth.li/pub/e3/2.6.16/01-ams-delta-lcd.diff;patch=1 \ + http://the.earth.li/pub/e3/2.6.16/02-ams-delta-keypad.diff;patch=1 \ + http://the.earth.li/pub/e3/2.6.16/03-ams-delta-modem.diff;patch=1 \ + http://the.earth.li/pub/e3/2.6.16/04-omapfb-12bpp-support.diff;patch=1 \ + http://the.earth.li/pub/e3/2.6.16/05-ams-delta-nand.diff;patch=1 \ + http://the.earth.li/pub/e3/2.6.16/06-ams-delta-keyboard.diff;patch=1 \ + http://the.earth.li/pub/e3/2.6.16/08-ams-delta-sound.diff;patch=1 \ + file://defconfig" +S = "${WORKDIR}/linux-2.6.16" + +inherit kernel + +python __anonymous () { + import re + host = bb.data.getVar('HOST_SYS', d, 1) + if not re.match('arm.*-linux', host): + raise bb.parse.SkipPackage("incompatible with host %s" % host) +} + +KERNEL_IMAGETYPE = "uImage" + +do_configure_prepend() { + install -m 0644 ${WORKDIR}/defconfig ${S}/.config + oe_runmake oldconfig +} + +do_deploy() { + install -d ${DEPLOY_DIR_IMAGE} + install -m 0644 arch/${ARCH}/boot/${KERNEL_IMAGETYPE} ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-${MACHINE}-${DATETIME}.bin +} + +do_deploy[dirs] = "${S}" + +addtask deploy before do_build after do_compile |