summaryrefslogtreecommitdiff
path: root/linux
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2004-11-07 15:48:06 +0000
committerPhil Blundell <philb@gnu.org>2004-11-07 15:48:06 +0000
commit9023349d826e202da45890d5862b904d1e90b9dc (patch)
tree367c3de0e4f3c94eb5fe05339135b43c26011ccc /linux
parenta97d417e66624483f7574de23c346df8418ed97c (diff)
fix up configuration
BKrev: 418e43b6dpskvVjQefIzRiQRUJuVTQ
Diffstat (limited to 'linux')
-rw-r--r--linux/handhelds-pxa-2.6_cvs.oe9
1 files changed, 5 insertions, 4 deletions
diff --git a/linux/handhelds-pxa-2.6_cvs.oe b/linux/handhelds-pxa-2.6_cvs.oe
index 46105f051d..4e9a0f5abf 100644
--- a/linux/handhelds-pxa-2.6_cvs.oe
+++ b/linux/handhelds-pxa-2.6_cvs.oe
@@ -2,6 +2,7 @@ SECTION = "kernel"
DESCRIPTION = "handhelds.org Linux kernel for StrongArm processor based devices."
MAINTAINER = "Greg Gilbert <greg@treke.net>"
LICENSE = "GPL"
+PV = "${K_MAJOR}.${K_MINOR}.${K_MICRO}-hh${HHV}+cvs${CVSDATE}"
#
PACKAGE_ARCH = "ipaqpxa"
KERNEL_CCSUFFIX = "-3.3.4"
@@ -10,7 +11,7 @@ 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}"
+ file://defconfig"
S = "${WORKDIR}/kernel26"
@@ -18,12 +19,12 @@ inherit kernel
K_MAJOR = "2"
K_MINOR = "6"
-K_MICRO = "6"
+K_MICRO = "8"
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
+ install -m 0644 ${WORKDIR}/defconfig ${S}/.config || die "No default configuration for ${MACHINE} available."
+ yes '' | oe_runmake oldconfig
}