mirror of
git://git.yoctoproject.org/poky
synced 2026-09-26 15:44:23 +00:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
23 lines
478 B
BlitzBasic
23 lines
478 B
BlitzBasic
SECTION = "base"
|
|
PRIORITY = "standard"
|
|
DESCRIPTION = "Manage symlinks in /etc/rcN.d"
|
|
MAINTAINER = "Phil Blundell <pb@handhelds.org>"
|
|
LICENSE = "GPL"
|
|
S = "${WORKDIR}/update-rc.d"
|
|
PR = "r1"
|
|
|
|
SRC_URI = "${HANDHELDS_CVS};module=apps/update-rc.d;tag=r0_6 \
|
|
file://copyright.patch;patch=1"
|
|
|
|
do_compile() {
|
|
}
|
|
|
|
do_stage() {
|
|
install -m 0755 ${S}/update-rc.d ${STAGING_BINDIR}/
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${sbindir}
|
|
install -m 0755 ${S}/update-rc.d ${D}${sbindir}/update-rc.d
|
|
}
|