blob: 99a3f3c72baf4b322e8f0cf9c6ba73707873cc1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
PR .= ".mlinux2"
SRC_URI += " file://0003-opkg_conf-create-opkg.lock-in-run-lock-instead-of-run.patch \
file://0004-opkg-symlink.patch \
file://modprobe \
"
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
# Modprobe fix
PACKAGES =+ "${PN}-modprobe"
FILES_${PN}-modprobe = "${datadir}/${PN}/intercept/modprobe"
do_install_append() {
install -d ${D}${datadir}/${PN}/intercept
install -m 0755 ${WORKDIR}/modprobe ${D}${datadir}/${PN}/intercept
}
|