mirror of
https://git.yoctoproject.org/poky
synced 2026-09-13 00:49:33 +02:00
rpcbind: add and use startup script, move binaries
- Add init script from debian, tweaked for us - Move binaries from bindir to sbindir, as debian does (From OE-Core rev: 8576575ce9a1be8f7bec4e7c018d9be5c3b247df) Signed-off-by: Christopher Larson <kergoth@gmail.com> Signed-off-by: Elizabeth Flanagan <elizabeth.flanagan@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
fa3b18efec
commit
f822034e4f
@@ -11,12 +11,26 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b46486e4c4a416602693a711bb5bfa39 \
|
||||
file://src/rpcinfo.c;beginline=1;endline=27;md5=f8a8cd2cb25ac5aa16767364fb0e3c24"
|
||||
|
||||
SRC_URI = "${SOURCEFORGE_MIRROR}/rpcbind/rpcbind-${PV}.tar.bz2 \
|
||||
file://init.d \
|
||||
file://fix_host_path.patch \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "1a77ddb1aaea8099ab19c351eeb26316"
|
||||
SRC_URI[sha256sum] = "c92f263e0353887f16379d7708ef1fb4c7eedcf20448bc1e4838f59497a00de3"
|
||||
|
||||
PR = "r2"
|
||||
PR = "r3"
|
||||
|
||||
inherit autotools
|
||||
inherit autotools update-rc.d
|
||||
|
||||
INITSCRIPT_NAME = "rpcbind"
|
||||
INITSCRIPT_PARAMS = "start 43 S . start 32 0 6 . stop 81 1 ."
|
||||
|
||||
do_install_append () {
|
||||
mv ${D}${bindir} ${D}${sbindir}
|
||||
|
||||
install -d ${D}${sysconfdir}/init.d
|
||||
sed -e 's,/etc/,${sysconfdir}/,g' \
|
||||
-e 's,/sbin/,${sbindir}/,g' \
|
||||
${WORKDIR}/init.d > ${D}${sysconfdir}/init.d/rpcbind
|
||||
chmod 0755 ${D}${sysconfdir}/init.d/rpcbind
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user