diff options
author | Chris Larson <clarson@kergoth.com> | 2004-12-07 22:05:47 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-12-07 22:05:47 +0000 |
commit | a780643c4b6aa11e1a36965a69df7116477c7b4c (patch) | |
tree | 17e81e77bde19931facf9b30fa5b5981df796071 /linux/opensimpad_2.4.25-vrs2-pxa1-jpm1.oe | |
parent | 88cce8db7ebf88ab9da2366a2ac21a5a723340b8 (diff) |
Merge oe-devel@oe-devel.bkbits.net:packages.bb
into handhelds.org:/home/kergoth/code/packages.bb
2004/12/07 04:58:25-06:00 ti.com!kergoth
More updates per the core rename.
2004/12/07 04:46:51-06:00 ti.com!kergoth
Update soundtracker per the core rename.
2004/12/07 04:44:14-06:00 ti.com!kergoth
Merge
2004/12/07 04:42:38-06:00 ti.com!kergoth
Updates per the recent rename of the oe core from 'oe' to 'bitbake'.
BKrev: 41b6293b91LRHSxMOt6WnrZVAdLbFw
Diffstat (limited to 'linux/opensimpad_2.4.25-vrs2-pxa1-jpm1.oe')
-rw-r--r-- | linux/opensimpad_2.4.25-vrs2-pxa1-jpm1.oe | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/linux/opensimpad_2.4.25-vrs2-pxa1-jpm1.oe b/linux/opensimpad_2.4.25-vrs2-pxa1-jpm1.oe deleted file mode 100644 index 0bd4a44956..0000000000 --- a/linux/opensimpad_2.4.25-vrs2-pxa1-jpm1.oe +++ /dev/null @@ -1,70 +0,0 @@ -DESCRIPTION = "Linux kernel for the SIEMENS SIMpad family of devices." -MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" -SECTION = "kernel" -LICENSE = "GPL" -KV = "${@oe.data.getVar('PV',d,True).split('-')[0]}" -VRSV = "${@oe.data.getVar('PV',d,True).split('-')[1]}" -PXAV = "${@oe.data.getVar('PV',d,True).split('-')[2]}" -JPMV = "${@oe.data.getVar('PV',d,True).split('-')[3]}" -PR = "r16" - -FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/opensimpad-${PV}" - -SRC_URI = "ftp://ftp.kernel.org/pub/linux/kernel/v2.4/linux-${KV}.tar.bz2 \ - file://${KV}-${VRSV}.patch;patch=1 \ - file://${KV}-${VRSV}-${PXAV}.patch;patch=1 \ - file://${KV}-${VRSV}-${PXAV}-${JPMV}.patch;patch=1 \ - file://sound-volume-reversed.patch;patch=1 \ - file://disable-pcmcia-probe.patch;patch=1 \ - file://mkdep.patch;patch=1 \ - file://defconfig-${MACHINE} \ - http://www.openswan.org/download/openswan-2.2.0-kernel-2.4-klips.patch.gz;patch=1 \ - file://mipv6-1.1-v2.4.25.patch;patch=1 \ - file://simpad-backlight-if.diff;patch=1;pnum=0 \ - file://simpad-switches-input.diff;patch=1;pnum=0 \ - file://simpad-switches-input2.diff;patch=1;pnum=0 \ - file://keymap.patch;patch=1 \ - file://simpad-apm.diff;patch=1;pnum=0 \ - file://simpad-ts-noninput.diff;patch=1;pnum=0 \ - file://simpad-pm-updates.patch;patch=1;pnum=0" - -# apply this when we have a patch that allows building with gcc 3.x: -# SRC_URI_append = file://gcc-3.3.patch;patch=1 -# SRC_URI_append = file://machtune-args.patch;patch=1 - -S = "${WORKDIR}/linux-${KV}" - -inherit kernel - -KERNEL_CCSUFFIX = "-3.3.3" -COMPATIBLE_HOST = "arm.*-linux" - -SIMPAD_MEM = ${@oe.data.getVar("SIMPAD_MEMORY_SIZE",d,1) or "32"} -SIMPAD_RD = ${@oe.data.getVar("SIMPAD_RAMDISK_SIZE",d,1) or "32"} -export CMDLINE = ${@oe.data.getVar("SIMPAD_CMDLINE",d,1) or "mtdparts=sa1100:512k(boot),1m(kernel),14848k(root),-(home) console=ttySA root=1f02 noinitrd jffs2_orphaned_inodes=delete rootfstype=jffs2 "} -EXTRA_OEMAKE = "" - -module_conf_sa1100_ir = "alias irda0 sa1100_ir" - -do_configure() { - install -m 0644 ${WORKDIR}/defconfig-${MACHINE} ${S}/.config || die "No default configuration for ${MACHINE} available." - - mem=${SIMPAD_MEM} - rd=${SIMPAD_RD} - mempos=`echo "obase=16; $mem * 1024 * 1024" | bc` - rdsize=`echo "$rd * 1024" | bc` - total=`expr $mem + $rd` - addr=`echo "obase=16; ibase=16; C0000000 + $mempos" | bc` - - if [ "$rd" == "0" ] - then - echo "# CONFIG_MTD_MTDRAM is not set" >> ${S}/.config - else - echo "CONFIG_MTD_MTDRAM=y" >> ${S}/.config - echo "CONFIG_MTDRAM_TOTAL_SIZE=$rdsize" >> ${S}/.config - echo "CONFIG_MTDRAM_ERASE_SIZE=1" >> ${S}/.config - echo "CONFIG_MTDRAM_ABS_POS=$addr" >> ${S}/.config - fi - echo "CONFIG_CMDLINE=\"${CMDLINE} mem=${mem}M\"" >> ${S}/.config - oe_runmake oldconfig -} |