blob: c6dc84a0f2089027c25a4bc31015c9d9ded624be (
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
|
DESCRIPTION = "Openslug initial network config via sysconf"
SECTION = "console/network"
LICENSE = "GPL"
DEPENDS = "base-files"
PR = "r2"
SRC_URI = "file://sysconfsetup \
file://kern_header.c"
inherit autotools update-rc.d
INITSCRIPT_NAME = "sysconfsetup"
INITSCRIPT_PARAMS = "defaults 39"
do_compile() {
${CC} -o ${S}/../kern_header ${S}/../kern_header.c
}
do_install() {
install -d ${D}/${sysconfdir} \
${D}/${sysconfdir}/init.d \
${D}/${sysconfdir}/rcS.d \
${D}/${sbindir}
install -d ${D}/initrd
install -m 0755 ${D}/../kern_header ${D}/${sbindir}/kern_header
install -m 0755 ${D}/../sysconfsetup ${D}/${sysconfdir}/init.d/
ln -s /etc/init.d/sysconfsetup ${D}/${sysconfdir}/rcS.d/S39sysconfsetup
}
|