mirror of
https://git.yoctoproject.org/poky
synced 2026-09-24 22:36:21 +02:00
Added HOMEPAGE and DESCRIPTION for recipes with missing decriptions or homepage [YOCTO #13471] (From OE-Core rev: a2658937bcb987b061cd9866d726d9d66623e93c) Signed-off-by: Dorinda Bassey <dorindabassey@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit ecf8922e6bb12a2facc59bbe794b575101fce1dc) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
914 B
BlitzBasic
29 lines
914 B
BlitzBasic
SUMMARY = "Enables PPP dial-in through a serial connection"
|
|
SECTION = "console/network"
|
|
DESCRIPTION = "PPP dail-in provides a point to point protocol (PPP), so that other computers can dial up to it and access connected networks."
|
|
DEPENDS = "ppp"
|
|
RDEPENDS_${PN} = "ppp"
|
|
PR = "r8"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
|
|
SRC_URI = "file://host-peer \
|
|
file://ppp-dialin"
|
|
|
|
inherit allarch useradd
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
do_install() {
|
|
install -d ${D}${sysconfdir}/ppp/peers
|
|
install -m 0644 ${WORKDIR}/host-peer ${D}${sysconfdir}/ppp/peers/host
|
|
|
|
install -d ${D}${sbindir}
|
|
install -m 0755 ${WORKDIR}/ppp-dialin ${D}${sbindir}
|
|
}
|
|
|
|
USERADD_PACKAGES = "${PN}"
|
|
USERADD_PARAM_${PN} = "--system --home /dev/null \
|
|
--no-create-home --shell ${sbindir}/ppp-dialin \
|
|
--no-user-group --gid nogroup ppp"
|