aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/buglabs/buglabs-ppp-scripts_0.2.bb
blob: 5dad570857b2d745f8228a444530e950f3cd657f (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
DESCRIPTION = "PPP Scripts for BUG"
LICENSE = "GPL"
RDEPENDS_${PN} = "udev"
PR = "r0"

SRC_URI = "file://att \
	file://att_chat \
	file://ip-down.local \
	file://ip-up.local \
	file://cdma \
	file://cdma_chat \
	file://tmobile \
	file://tmobile_chat \
	file://tmobile_disconnect \
	"

S = ${WORKDIR}

PACKAGE_ARCH = "all"

do_install() {
    install -d ${D}/etc
    install -d ${D}/etc/ppp
    install -d ${D}/etc/ppp/peers
    install -m 0644 att* ${D}/etc/ppp/peers
    install -m 0644 ip* ${D}/etc/ppp
    install -m 0644 tmobile* ${D}/etc/ppp/peers
    install -m 0644 cdma* ${D}/etc/ppp/peers/
}