diff options
author | Stelios Koroneos <skoroneos@digital-opsis.com> | 2007-05-28 22:26:36 +0000 |
---|---|---|
committer | Stelios Koroneos <skoroneos@digital-opsis.com> | 2007-05-28 22:26:36 +0000 |
commit | 65ca94305467d91768c6c0ff76cb62519dc1e191 (patch) | |
tree | fcbc674a60efe938c2082154ccc134f4b529ed22 /packages/linux/linux-x86_2.6.20.bb | |
parent | 4ec943c338977235a7d66a04b39c3b4b7a06c530 (diff) | |
parent | 19dede3493a0b62b2a29b51d2cfbaa58e39ff187 (diff) |
merge of '3d4a85aa2c2724b95dcfd705b2078392bd5fe7fa'
and 'd1aa63f3b61dcecf2e8e5a90f2243dc87573d0b7'
Diffstat (limited to 'packages/linux/linux-x86_2.6.20.bb')
-rw-r--r-- | packages/linux/linux-x86_2.6.20.bb | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/packages/linux/linux-x86_2.6.20.bb b/packages/linux/linux-x86_2.6.20.bb index c73ee58d2f..ef5a451af0 100644 --- a/packages/linux/linux-x86_2.6.20.bb +++ b/packages/linux/linux-x86_2.6.20.bb @@ -1,10 +1,14 @@ DESCRIPTION = "Linux Kernel for x86 compatible machines" SECTION = "kernel" LICENSE = "GPL" -PR = "r2" +PR = "r0" + +SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2 " + +SRC_URI_append_x86 = "file://i486-defconfig" +SRC_URI_append_i586-generic = "file://i586-defconfig" +SRC_URI_append_i686-generic = "file://i686-defconfig" -SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2 \ - file://defconfig" S = "${WORKDIR}/linux-${PV}" @@ -13,15 +17,15 @@ inherit kernel COMPATIBLE_HOST = "i.86.*-linux" KERNEL_IMAGETYPE = "bzImage" -do_configure_prepend() { - install -m 0644 ${WORKDIR}/defconfig ${S}/.config +do_configure_prepend_x86() { + install -m 0644 ${WORKDIR}/i486-defconfig ${S}/.config } -do_deploy() { - install -d ${DEPLOY_DIR_IMAGE} - install -m 0644 arch/i386/boot/${KERNEL_IMAGETYPE} ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-${PV}-${MACHINE}-${DATETIME} -} +do_configure_prepend_i586-generic() { + install -m 0644 ${WORKDIR}/i586-defconfig ${S}/.config +} -do_deploy[dirs] = "${S}" +do_configure_prepend_i686() { + install -m 0644 ${WORKDIR}/i686-defconfig ${S}/.config +} -addtask deploy before do_populate_staging after do_compile |