summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/ppp-dialin/ppp-dialin_0.1.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-connectivity/ppp-dialin/ppp-dialin_0.1.bb')
-rw-r--r--meta/recipes-connectivity/ppp-dialin/ppp-dialin_0.1.bb9
1 files changed, 4 insertions, 5 deletions
diff --git a/meta/recipes-connectivity/ppp-dialin/ppp-dialin_0.1.bb b/meta/recipes-connectivity/ppp-dialin/ppp-dialin_0.1.bb
index b0097aa480..0c3085d3a8 100644
--- a/meta/recipes-connectivity/ppp-dialin/ppp-dialin_0.1.bb
+++ b/meta/recipes-connectivity/ppp-dialin/ppp-dialin_0.1.bb
@@ -2,8 +2,7 @@ SUMMARY = "Enables PPP dial-in through a serial connection"
2SECTION = "console/network" 2SECTION = "console/network"
3DESCRIPTION = "PPP dail-in provides a point to point protocol (PPP), so that other computers can dial up to it and access connected networks." 3DESCRIPTION = "PPP dail-in provides a point to point protocol (PPP), so that other computers can dial up to it and access connected networks."
4DEPENDS = "ppp" 4DEPENDS = "ppp"
5RDEPENDS_${PN} = "ppp" 5RDEPENDS:${PN} = "ppp"
6PR = "r8"
7LICENSE = "MIT" 6LICENSE = "MIT"
8LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" 7LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
9 8
@@ -16,13 +15,13 @@ S = "${WORKDIR}"
16 15
17do_install() { 16do_install() {
18 install -d ${D}${sysconfdir}/ppp/peers 17 install -d ${D}${sysconfdir}/ppp/peers
19 install -m 0644 ${WORKDIR}/host-peer ${D}${sysconfdir}/ppp/peers/host 18 install -m 0644 ${S}/host-peer ${D}${sysconfdir}/ppp/peers/host
20 19
21 install -d ${D}${sbindir} 20 install -d ${D}${sbindir}
22 install -m 0755 ${WORKDIR}/ppp-dialin ${D}${sbindir} 21 install -m 0755 ${S}/ppp-dialin ${D}${sbindir}
23} 22}
24 23
25USERADD_PACKAGES = "${PN}" 24USERADD_PACKAGES = "${PN}"
26USERADD_PARAM_${PN} = "--system --home /dev/null \ 25USERADD_PARAM:${PN} = "--system --home /dev/null \
27 --no-create-home --shell ${sbindir}/ppp-dialin \ 26 --no-create-home --shell ${sbindir}/ppp-dialin \
28 --no-user-group --gid nogroup ppp" 27 --no-user-group --gid nogroup ppp"