diff options
author | Koen Kooi <koen@openembedded.org> | 2005-12-10 19:00:29 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-12-10 19:00:29 +0000 |
commit | 2aa1085279b9545d87606a10964a4280c2d32e96 (patch) | |
tree | 5eae70ade892fee9f9fea8e82e290e9781428afd | |
parent | 08ad67e63aadeed08f9f7e9c2be90211fb861c05 (diff) |
LAB: add Linux As Bootloader
-rw-r--r-- | packages/linux/LAB-kernel_cvs.bb | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/packages/linux/LAB-kernel_cvs.bb b/packages/linux/LAB-kernel_cvs.bb new file mode 100644 index 0000000000..2ea1cd758a --- /dev/null +++ b/packages/linux/LAB-kernel_cvs.bb @@ -0,0 +1,42 @@ +SECTION = "kernel" +DESCRIPTION = "Liux As Bootloader kernelm" +MAINTAINER = "Koen Kooi <koen@handhelds.org>" +LICENSE = "GPL" +PV = "${K_MAJOR}.${K_MINOR}.${K_MICRO}-hh${HHV}+cvs${CVSDATE}" +# +KERNEL_CCSUFFIX = "-3.4.4" +COMPATIBLE_HOST = "arm.*-linux" + +FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/handhelds-pxa-${PV}" + +SRC_URI = "${HANDHELDS_CVS};module=linux/kernel26 \ + file://defconfig" + +#SRC_URI += bootshim? + +S = "${WORKDIR}/kernel26" + +inherit kernel + +K_MAJOR = "2" +K_MINOR = "6" +K_MICRO = "13" +HHV = "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/LAB-image-${MACHINE} +#add the bootshim? +} + +do_deploy[dirs] = "${S}" + +addtask deploy before do_build after do_compile + |