blob: 514f689eabf507fd54f64dd15af13ec142bdcd84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
SECTION = "base"
DESCRIPTION = "Script to manage module configuration files"
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}
}
|