summaryrefslogtreecommitdiff
path: root/modutils/modutils_2.4.25.oe
blob: b9077b5a27f4736aacce47e3c56780fc1e2107f0 (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
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
S = ${WORKDIR}/${P}

inherit autotools

EXTRA_OECONF = --disable-strip
export BUILDCC = ${BUILD_CC}

do_install_prepend () {
	oe_runmake 'DESTDIR=${D}' install
}

do_install () {
	install -d ${D}/${sysconfdir}
	if [ -e ${FILESDIR}/modules_${MACHINE} ]; then
		install -m 0644 ${FILESDIR}/modules_${MACHINE} ${D}/${sysconfdir}/modules
	else
		touch ${D}/${sysconfdir}/modules
	fi
	if [ -e ${FILESDIR}/modules.conf_${MACHINE} ]; then
		install -m 0644 ${FILESDIR}/modules.conf_${MACHINE} ${D}/${sysconfdir}/modules.conf
	else
		touch ${D}/${sysconfdir}/modules.conf
	fi
}