From: Michael Lauer Date: Sat, 1 May 2004 18:09:24 +0000 (+0000) Subject: set ARCH, not KERNEL_ARCH - patch courtesy pb_. X-Git-Tag: Release-2010-05/1~19415 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2cd78f5786610c91088d61923faa0b8c8195f97b;p=openembedded.git set ARCH, not KERNEL_ARCH - patch courtesy pb_. BKrev: 4093e7d4HngbTJmjnwIRljJY16DokQ --- diff --git a/linux/linux-epia_2.6.5.oe b/linux/linux-epia_2.6.5.oe index e69de29bb2..2633220dab 100644 --- a/linux/linux-epia_2.6.5.oe +++ b/linux/linux-epia_2.6.5.oe @@ -0,0 +1,15 @@ +DESCRIPTION = "Linux kernel for VIA EPiA" +LICENSE = "GPL" + +SRC_URI = "ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2" +S = "${WORKDIR}/linux-${PV}" + +inherit kernel + +ARCH = "i386" +KERNEL_IMAGETYPE = "bzImage" + +do_configure_prepend() { + install -m 0644 ${FILESDIR}/epia_defconfig ${S}/.config || die "no default configuration for ${MACHINE} available." + oe_runmake oldconfig +}