diff options
author | Koen Kooi <koen@openembedded.org> | 2005-06-30 08:19:37 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-06-30 08:19:37 +0000 |
commit | c8e5702127e507e82e6f68a4b8c546803accea9d (patch) | |
tree | 00583491f40ecc640f2b28452af995e3a63a09d7 /packages/linux/linux-epia_2.6.8.1.bb | |
parent | 87ec8ca4d2e2eb4d1c1e1e1a6b46a395d56805b9 (diff) |
import clean BK tree at cset 1.3670
Diffstat (limited to 'packages/linux/linux-epia_2.6.8.1.bb')
-rw-r--r-- | packages/linux/linux-epia_2.6.8.1.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/packages/linux/linux-epia_2.6.8.1.bb b/packages/linux/linux-epia_2.6.8.1.bb index e69de29bb2..11173e1dff 100644 --- a/packages/linux/linux-epia_2.6.8.1.bb +++ b/packages/linux/linux-epia_2.6.8.1.bb @@ -0,0 +1,27 @@ +SECTION = "kernel" +DESCRIPTION = "Linux kernel for VIA EPiA" +LICENSE = "GPL" +PR = "r15" + +SRC_URI = "ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2 \ + http://www.epiawiki.org/files/epia_kernel/patch-2.6.8.1-epia1.bz2;patch=1 \ + http://hem.bredband.net/ekmlar/patch-vt1211-2.6.txt;patch=1 \ + file://epia_defconfig" +S = "${WORKDIR}/linux-${PV}" + +COMPATIBLE_HOST = 'i.86.*-linux' + +inherit kernel + +ARCH = "i386" +KERNEL_IMAGETYPE = "bzImage" + +# Don't want kernel in rootfs +FILES_kernel = "" +ALLOW_EMPTY_kernel = "1" +PACKAGES += "kernel-image" +FILES_kernel-image = "/boot/${KERNEL_IMAGETYPE}*" + +do_configure_prepend() { + install -m 0644 ${WORKDIR}/epia_defconfig ${S}/.config +} |