summaryrefslogtreecommitdiff
path: root/linux-uml/linux-uml_2.4.24.oe
blob: b2650a02d33bc940bd6cdf89cc6dea370bca7a7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
DESCRIPTION = "User Mode Linux Kernel"
LICENSE = "GPL"
PR = "2"

SRC_URI = "ftp://ftp.kernel.org/pub/linux/kernel/v2.4/linux-${PV}.tar.bz2 \
           http://mirror.usermodelinux.org/uml/uml-patch-${PV}-${PR}.bz2;patch=1 \
	   file://${FILESDIR}/fix-includes.patch;patch=1"
S = "${WORKDIR}/linux-${PV}"

inherit kernel

export OS = "Linux"
ARCH = "um"
SUBARCH = "${TARGET_ARCH}"
KERNEL_IMAGETYPE = "linux"

do_configure_prepend () {
	install -m 0644 ${FILESDIR}/defconfig .config
	oe_runmake oldconfig
}

do_compile() {
	unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
	oe_runmake dep
	oe_runmake STAGING_LIBDIR=${STAGING_LIBDIR} ${KERNEL_IMAGETYPE}
	oe_runmake modules
}

do_install_append () {
	install -m 0755 linux ${D}/boot/linux-${PV}
}