blob: 297b1bf7b064339a344c4ca4fd6d35686627bfe8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
SECTION = "base"
DESCRIPTION = "Script to manage module configuration files"
LICENSE = "GPLv2"
PACKAGE_ARCH = "all"
PR = "r3"
SRC_URI = "file://update-modules"
pkg_postinst() {
if [ "x$D" != "x" ]; then
exit 1
fi
update-modules
/etc/init.d/modutils.sh
}
do_install() {
install -d ${D}${sbindir}
install ${WORKDIR}/update-modules ${D}${sbindir}
}
|