blob: 01ae798240797d65ac662d60cfe17a3334e9f199 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
DESCRIPTION = "802.1q vlan support program"
RRECOMMENDS = "kernel-module-8021q"
MAINTAINER = "NSLU2 Linux <nslu2-linux@yahoogroups.com>"
PR = "r1"
S = "${WORKDIR}/vlan/"
SRC_URI = "http://scry.wanfear.com/~greear/vlan/vlan.1.8.tar.gz \
"
inherit base
do_install() {
install -d "${D}/usr/sbin"
install -m 755 "${S}/vconfig" "${D}/usr/sbin/vconfig"
}
|