blob: a4f5e5a56c28b6d912bd3e5164ff03aaa4d45c93 (
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
|
DESCRIPTION = "802.1q vlan support program"
RRECOMMENDS = "kernel-module-8021q"
PR = "r0"
S = "${WORKDIR}/vlan/"
SRC_URI = " \
http://www.candelatech.com/~greear/vlan/vlan.${PV}.tar.gz \
file://ip \
file://vlan-pre-up \
file://vlan-post-down \
"
inherit base
CCFLAGS = "-g -D_GNU_SOURCE -Wall -I${STAGING_INCDIR}"
LDLIBS = ""
do_compile() {
${CC} ${CCFLAGS} -c vconfig.c
${CC} ${CCFLAGS} ${LDFLAGS} -o vconfig vconfig.o ${LDLIBS}
}
do_install() {
install -d "${D}${sbindir}"
install -m 755 "${S}/vconfig" "${D}${sbindir}/vconfig"
install -d ${D}/${sysconfdir}/network/if-pre-up.d
install -d ${D}/${sysconfdir}/network/if-post-down.d
install -d ${D}/${sysconfdir}/network/if-up.d
install -m 0755 ${WORKDIR}/ip ${D}/${sysconfdir}/network/if-up.d/
install -m 0755 ${WORKDIR}/vlan-pre-up ${D}/${sysconfdir}/network/if-pre-up.d/vlan
install -m 0755 ${WORKDIR}/vlan-post-down ${D}/${sysconfdir}/network/if-post-down.d/vlan
}
|