diff options
author | Greg Gilbert <greg@treke.net> | 2004-06-19 00:53:28 +0000 |
---|---|---|
committer | Greg Gilbert <greg@treke.net> | 2004-06-19 00:53:28 +0000 |
commit | 0ecb98049b37ff336284fea23908c9ed2b379662 (patch) | |
tree | 6b572cdb9f9b00713758a5581a16b69eb23cc6d0 | |
parent | b3faf52f22595b9d8420377bdee7226c1087723a (diff) |
handhelds-pxa-2.6_cvs.oe:
Invalid priority generation breaks handhelds-pxa-2.6_cvs.oe. Patch from Michael O.
BKrev: 40d38e88ebAEtpfe-5VZ8WFSFj0zuw
-rw-r--r-- | linux/handhelds-pxa-2.6_cvs.oe | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/linux/handhelds-pxa-2.6_cvs.oe b/linux/handhelds-pxa-2.6_cvs.oe index e69de29bb2..4e3abaf5b5 100644 --- a/linux/handhelds-pxa-2.6_cvs.oe +++ b/linux/handhelds-pxa-2.6_cvs.oe @@ -0,0 +1,28 @@ +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 = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=linux/kernel26 \ + file://defconfig-${MACHINE}" + +S = "${WORKDIR}/kernel26" + +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 +} |