blob: 397de5e15bb5bab36e5b3b89ccafd3da1b3d7910 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
SRC_URI = ftp://ftp.kernel.org/pub/linux/utils/kernel/${PN}/v2.4/${P}.tar.bz2 \
file://${FILESDIR}/modutils-notest.patch;patch=1 \
file://${FILESDIR}/configure.patch;patch=1
inherit autotools
# modutils go in /sbin
sbindir=/sbin
EXTRA_OECONF = --disable-strip
export BUILDCC = ${BUILD_CC}
do_install_prepend () {
oe_runmake 'DESTDIR=${D}' install
}
do_install () {
install -d ${D}/${sysconfdir}
oe_machinstall -m 0644 ${FILESDIR}/modules ${D}/${sysconfdir}/modules
oe_machinstall -m 0644 ${FILESDIR}/modules.conf ${D}/${sysconfdir}/modules.conf
}
|