diff options
author | Holger Freyther <zecke@selfish.org> | 2006-02-20 23:22:57 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-02-20 23:22:57 +0000 |
commit | cbde8cbe425ff9c1d24c009a6a785327d8bbee5b (patch) | |
tree | 582bc10b82e1fcd9ca987c66dde11d3f27d7f209 /packages/linux/handhelds-pxa-2.6_2.6.15-hh0.bb | |
parent | 6eb8cc0af2e64afa5ee55236a10cc14c8e7bf604 (diff) | |
parent | 89d74ede96d6986ea831ef28d513f60f58b306f5 (diff) |
merge of 623eed7c92806a0e18e3daa7e8dee2edd301a94e
and d7c8c3fb9c9b65e500f2c9ffb52d588c15efa14b
Diffstat (limited to 'packages/linux/handhelds-pxa-2.6_2.6.15-hh0.bb')
-rw-r--r-- | packages/linux/handhelds-pxa-2.6_2.6.15-hh0.bb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/packages/linux/handhelds-pxa-2.6_2.6.15-hh0.bb b/packages/linux/handhelds-pxa-2.6_2.6.15-hh0.bb new file mode 100644 index 0000000000..f0fe6f32e9 --- /dev/null +++ b/packages/linux/handhelds-pxa-2.6_2.6.15-hh0.bb @@ -0,0 +1,36 @@ +SECTION = "kernel" +DESCRIPTION = "handhelds.org Linux kernel for PXA based devices." +MAINTAINER = "Greg Gilbert <greg@treke.net>" +LICENSE = "GPL" + +COMPATIBLE_HOST = "arm.*-linux" + +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://ide_not_removable-r0.patch;patch=1 \ + file://defconfig" + +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 ${WORKDIR}/defconfig ${S}/.config || die "No default configuration for ${MACHINE} available." + yes '' | oe_runmake oldconfig +} + +do_deploy() { + install -d ${DEPLOY_DIR}/images + install -m 0644 arch/${ARCH}/boot/${KERNEL_IMAGETYPE} ${DEPLOY_DIR}/images/${KERNEL_IMAGETYPE}-${PV}-${MACHINE}-${DATETIME} +} + +do_deploy[dirs] = "${S}" + +addtask deploy before do_build after do_compile |