mirror of
https://git.yoctoproject.org/poky
synced 2026-03-29 23:02:20 +02:00
* Add qemux86 machine. * Glibc 2.4 updates from upstream OE. * Add linux-x86 kernel to satisfy the deps. git-svn-id: https://svn.o-hand.com/repos/poky/trunk@616 311d38ba-8fff-0310-9ca6-ca027cbcb966
20 lines
397 B
BlitzBasic
20 lines
397 B
BlitzBasic
DESCRIPTION = "Linux Kernel for x86 compatible machines"
|
|
SECTION = "kernel"
|
|
LICENSE = "GPL"
|
|
PR = "r1"
|
|
|
|
SRC_URI = "ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2 \
|
|
file://defconfig"
|
|
|
|
S = "${WORKDIR}/linux-${PV}"
|
|
|
|
inherit kernel
|
|
|
|
COMPATIBLE_HOST = "i.86.*-linux"
|
|
KERNEL_IMAGETYPE = "bzImage"
|
|
|
|
do_configure_prepend() {
|
|
install -m 0644 ${WORKDIR}/defconfig ${S}/.config
|
|
}
|
|
|