aboutsummaryrefslogtreecommitdiffstats
path: root/linux/handhelds-pxa-2.6_2.6.6-hh0.oe
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-07 22:05:47 +0000
committerChris Larson <clarson@kergoth.com>2004-12-07 22:05:47 +0000
commita780643c4b6aa11e1a36965a69df7116477c7b4c (patch)
tree17e81e77bde19931facf9b30fa5b5981df796071 /linux/handhelds-pxa-2.6_2.6.6-hh0.oe
parent88cce8db7ebf88ab9da2366a2ac21a5a723340b8 (diff)
downloadopenembedded-a780643c4b6aa11e1a36965a69df7116477c7b4c.tar.gz
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/handhelds-pxa-2.6_2.6.6-hh0.oe')
-rw-r--r--linux/handhelds-pxa-2.6_2.6.6-hh0.oe29
1 files changed, 0 insertions, 29 deletions
diff --git a/linux/handhelds-pxa-2.6_2.6.6-hh0.oe b/linux/handhelds-pxa-2.6_2.6.6-hh0.oe
deleted file mode 100644
index 09a1edbc1d..0000000000
--- a/linux/handhelds-pxa-2.6_2.6.6-hh0.oe
+++ /dev/null
@@ -1,29 +0,0 @@
-SECTION = "kernel"
-DESCRIPTION = "handhelds.org Linux kernel for StrongArm processor based devices."
-MAINTAINER = "Greg Gilbert <greg@treke.net>"
-LICENSE = "GPL"
-#
-PACKAGE_ARCH = "ipaqpxa"
-KERNEL_CCSUFFIX = "-3.3.4"
-COMPATIBLE_HOST = "arm.*-linux"
-
-FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/handhelds-pxa-${PV}"
-
-SRC_URI = "http://handhelds.org/~michaelo/ipaq/kernel/linux-2.6.6-hh0.tar.bz2 \
- file://defconfig-${MACHINE}"
-
-S = "${WORKDIR}/linux-2.6.6-hh0"
-
-inherit kernel
-
-K_MAJOR = "2"
-K_MINOR = "6"
-K_MICRO = "6"
-HHV = "0"
-#
-
-KERNEL_PRIORITY = "${@'%d' % (int(oe.data.getVar('K_MAJOR',d,1)) * 100000000 + int(oe.data.getVar('K_MINOR',d,1)) * 1000000 + int(oe.data.getVar('K_MICRO',d,1)) * 10000 + float(oe.data.getVar('HHV',d,1)))}"
-do_configure() {
- install -m 0644 ${WORKDIR}/defconfig-${MACHINE} ${S}/.config || die "No default configuration for ${MACHINE} available."
- (echo N; echo m; echo N) | oe_runmake oldconfig
-}