generic-poky/meta/packages/update-rc.d/update-rc.d_0.7.bb
Marcin Juszkiewicz c75f6a23fd update-rc.d: Be less verbose by default. (from OE)
* Don't spit detailed info about links created unless passed -v.
* This is to prevent initial bootup console spamming.

Revision: fe0992753b30f43be0407eacefd0a4c6fb8045bd
Author: pfalcon@openembedded.org
Date: 2007-12-01T19:22:14


git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3340 311d38ba-8fff-0310-9ca6-ca027cbcb966
2007-12-18 08:21:00 +00:00

24 lines
471 B
BlitzBasic

SECTION = "base"
PRIORITY = "standard"
DESCRIPTION = "Manage symlinks in /etc/rcN.d"
LICENSE = "GPL"
S = "${WORKDIR}/update-rc.d"
PR = "r1"
SRC_URI = "${HANDHELDS_CVS};module=apps/update-rc.d;tag=r0_7 \
file://add-verbose.patch;patch=1"
PACKAGE_ARCH = "all"
do_compile() {
}
do_stage() {
install -m 0755 ${S}/update-rc.d ${STAGING_BINDIR_NATIVE}/
}
do_install() {
install -d ${D}${sbindir}
install -m 0755 ${S}/update-rc.d ${D}${sbindir}/update-rc.d
}