blob: 1cfca99b0dc4e7da24245fa7941cb7901abc6d3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
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
}
|