summaryrefslogtreecommitdiff
path: root/netbase/netbase_4.16.oe
blob: ea0be2ef9f337e26fed2cbb86cc3ae5a4f8e2de0 (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
PR = "r3"
DESCRIPTION = "This package provides the necessary \
infrastructure for basic TCP/IP based networking."
DEPENDS = "update-rc.d"
RDEPENDS = "update-rc.d"

inherit update-rc.d

INITSCRIPT_NAME = "networking"
INITSCRIPT_PARAMS = "start 40 S . stop 40 0 6 1 ."

SRC_URI = "${DEBIAN_MIRROR}/main/n/netbase/netbase_${PV}.tar.gz"

do_install () {
	install -d ${D}/${sysconfdir}/init.d \
		   ${D}/${sbindir} \
		   ${D}/${mandir}/man8 \
		   ${D}/${sysconfdir}/network/if-pre-up.d \
		   ${D}/${sysconfdir}/network/if-up.d \
		   ${D}/${sysconfdir}/network/if-down.d \
		   ${D}/${sysconfdir}/network/if-post-down.d
	install -m 0644 ${FILESDIR}/options ${D}/${sysconfdir}/network/options
	install -m 0755 ${FILESDIR}/init ${D}/${sysconfdir}/init.d/networking
	install -m 0644 etc-rpc ${D}/${sysconfdir}/rpc
	install -m 0644 etc-protocols ${D}/${sysconfdir}/protocols
	install -m 0644 etc-services ${D}/${sysconfdir}/services
	install -m 0755 update-inetd ${D}/${sbindir}/
	install -m 0644 update-inetd.8 ${D}/${mandir}/man8/
	oe_machinstall -m 0644 ${FILESDIR}/interfaces ${D}/${sysconfdir}/network/interfaces
}