blob: 1cef924598178e58fe8a9ce4e5fae5fc45e0086d (
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
28
29
30
31
32
33
34
35
36
37
38
|
LICENSE = "GPL"
MAINTAINER = "Florian Boor <florian@kernelconcepts.de"
PR = "r1"
DEPENDS = "base-passwd hotplug-dbus"
SRC_URI = "file://fixup-770.sh"
FILES_${PN} = "${sysconfdir} ${libdir}"
inherit update-rc.d
INITSCRIPT_NAME = "fixup-770.sh"
INITSCRIPT_PARAMS = "defaults 01"
do_install () {
install -d ${D}${sysconfdir}/init.d
install -m 755 ${S}/fixup-770.sh ${D}/${sysconfdir}/init.d/fixup-770.sh
install -d ${D}/lib/firmware
}
pkg_postinst () {
#!/bin/sh
# can't do adduser stuff offline
if [ "x$D" != "x" ]; then
exit 1
fi
# set up some links to firmware and modules in initrd
ln -sf /mnt/initfs/lib/firmware/* /lib/firmware/
rm -rf /lib/modules
ln -s /mnt/initfs/lib/modules /lib/modules
}
|