diff options
author | Koen Kooi <koen@openembedded.org> | 2006-10-12 09:07:31 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2006-10-12 09:07:31 +0000 |
commit | aceca7f3b9518143feefb6c75883bf786cddf499 (patch) | |
tree | 7168ffc2319a0154b1ae98b6e51688d281f20d7e /packages/linux/handhelds-pxa-2.6_2.6.11-hh2.bb | |
parent | 90458249b3cabb3ff98d43fa724c62eae1acc0d6 (diff) |
linux kernels: remove ipaq-pxa270 support, remove obsolete recipes
Diffstat (limited to 'packages/linux/handhelds-pxa-2.6_2.6.11-hh2.bb')
-rw-r--r-- | packages/linux/handhelds-pxa-2.6_2.6.11-hh2.bb | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/packages/linux/handhelds-pxa-2.6_2.6.11-hh2.bb b/packages/linux/handhelds-pxa-2.6_2.6.11-hh2.bb deleted file mode 100644 index c96af82fe9..0000000000 --- a/packages/linux/handhelds-pxa-2.6_2.6.11-hh2.bb +++ /dev/null @@ -1,27 +0,0 @@ -SECTION = "kernel" -DESCRIPTION = "handhelds.org Linux kernel for PXA based devices." -LICENSE = "GPL" -# -COMPATIBLE_HOST = "arm.*-linux" -COMPATIBLE_MACHINE = '(h3900|h2200|ipaq-pxa270)' - - -FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/handhelds-pxa-${PV}" - -SRC_URI = "${HANDHELDS_CVS};module=linux/kernel26;tag=${@'K' + bb.data.getVar('PV',d,1).replace('.', '-')} \ - file://pitre-tls-2651.patch;patch=1" - -S = "${WORKDIR}/kernel26" - -inherit kernel - -K_MAJOR = "${@bb.data.getVar('PV',d,1).split('-')[0].split('.')[0]}" -K_MINOR = "${@bb.data.getVar('PV',d,1).split('-')[0].split('.')[1]}" -K_MICRO = "${@bb.data.getVar('PV',d,1).split('-')[0].split('.')[2]}" -HHV = "${@bb.data.getVar('PV',d,1).split('-')[1].split('hh')[-1]}" - -KERNEL_PRIORITY = "${@'%d' % (int(bb.data.getVar('K_MAJOR',d,1)) * 100000000 + int(bb.data.getVar('K_MINOR',d,1)) * 1000000 + int(bb.data.getVar('K_MICRO',d,1)) * 10000 + float(bb.data.getVar('HHV',d,1)))}" -do_configure() { - install -m 0644 arch/arm/configs/ipaqpxa_defconfig .config - yes '' | oe_runmake oldconfig -} |