Rename /openembedded/ -> /meta/

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie
2006-07-21 10:10:31 +00:00
parent 2cf0eadf9f
commit b2f192faab
1725 changed files with 6 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
-detach
defaultroute
nocrtscts
lock
noauth
lcp-echo-interval 5
lcp-echo-failure 3
usepeerdns
115200
local
asyncmap 0

View File

@@ -0,0 +1,3 @@
#!/bin/sh
/usr/sbin/pppd call host

View File

@@ -0,0 +1,35 @@
SECTION = "console/network"
DESCRIPTION = "Enables PPP dial-in through a serial connection"
MAINTAINER = "Rene Wagner <rw@handhelds.org>"
DEPENDS = "ppp"
RDEPENDS = "ppp"
PR = "r4"
LICENSE = "MIT"
SRC_URI = "file://host-peer \
file://ppp-dialin"
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}
}
pkg_postinst() {
if test "x$D" != "x"; then
exit 1
else
adduser --system --home /dev/null --no-create-home --empty-password --ingroup nogroup -s ${sbindir}/ppp-dialin ppp
fi
}
pkg_postrm() {
if test "x$D" != "x"; then
exit 1
else
deluser ppp
fi
}