diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-01 19:09:11 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-01 19:09:57 +0100 |
commit | d62ee7eaf2ba025c3f64b2d4e10dc7cec4637612 (patch) | |
tree | f36fe3008f36ff75cbdd31b630f8f13f1f205ebb /meta/recipes-connectivity/ppp-dialin | |
parent | caab7fc509bf27706ff3248689f6afd04225cfda (diff) | |
download | poky-d62ee7eaf2ba025c3f64b2d4e10dc7cec4637612.tar.gz |
packages: Separate out most of the remaining packages into recipes
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/recipes-connectivity/ppp-dialin')
-rw-r--r-- | meta/recipes-connectivity/ppp-dialin/files/host-peer | 11 | ||||
-rw-r--r-- | meta/recipes-connectivity/ppp-dialin/files/ppp-dialin | 3 | ||||
-rw-r--r-- | meta/recipes-connectivity/ppp-dialin/ppp-dialin_0.1.bb | 35 |
3 files changed, 49 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/ppp-dialin/files/host-peer b/meta/recipes-connectivity/ppp-dialin/files/host-peer new file mode 100644 index 0000000000..e7e2e11d49 --- /dev/null +++ b/meta/recipes-connectivity/ppp-dialin/files/host-peer | |||
@@ -0,0 +1,11 @@ | |||
1 | -detach | ||
2 | defaultroute | ||
3 | nocrtscts | ||
4 | lock | ||
5 | noauth | ||
6 | lcp-echo-interval 5 | ||
7 | lcp-echo-failure 3 | ||
8 | usepeerdns | ||
9 | 115200 | ||
10 | local | ||
11 | asyncmap 0 | ||
diff --git a/meta/recipes-connectivity/ppp-dialin/files/ppp-dialin b/meta/recipes-connectivity/ppp-dialin/files/ppp-dialin new file mode 100644 index 0000000000..ea2771311a --- /dev/null +++ b/meta/recipes-connectivity/ppp-dialin/files/ppp-dialin | |||
@@ -0,0 +1,3 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | /usr/sbin/pppd call host | ||
diff --git a/meta/recipes-connectivity/ppp-dialin/ppp-dialin_0.1.bb b/meta/recipes-connectivity/ppp-dialin/ppp-dialin_0.1.bb new file mode 100644 index 0000000000..6861d8ad44 --- /dev/null +++ b/meta/recipes-connectivity/ppp-dialin/ppp-dialin_0.1.bb | |||
@@ -0,0 +1,35 @@ | |||
1 | SECTION = "console/network" | ||
2 | DESCRIPTION = "Enables PPP dial-in through a serial connection" | ||
3 | DEPENDS = "ppp" | ||
4 | RDEPENDS = "ppp" | ||
5 | PR = "r5" | ||
6 | LICENSE = "MIT" | ||
7 | |||
8 | SRC_URI = "file://host-peer \ | ||
9 | file://ppp-dialin" | ||
10 | |||
11 | do_install() { | ||
12 | install -d ${D}${sysconfdir}/ppp/peers | ||
13 | install -m 0644 ${WORKDIR}/host-peer ${D}${sysconfdir}/ppp/peers/host | ||
14 | |||
15 | install -d ${D}${sbindir} | ||
16 | install -m 0755 ${WORKDIR}/ppp-dialin ${D}${sbindir} | ||
17 | } | ||
18 | |||
19 | PACKAGE_ARCH = "all" | ||
20 | |||
21 | pkg_postinst() { | ||
22 | if test "x$D" != "x"; then | ||
23 | exit 1 | ||
24 | else | ||
25 | adduser --system --home /dev/null --no-create-home --empty-password --ingroup nogroup -s ${sbindir}/ppp-dialin ppp | ||
26 | fi | ||
27 | } | ||
28 | |||
29 | pkg_postrm() { | ||
30 | if test "x$D" != "x"; then | ||
31 | exit 1 | ||
32 | else | ||
33 | deluser ppp | ||
34 | fi | ||
35 | } | ||