mirror of
https://git.yoctoproject.org/poky
synced 2026-09-24 22:36:21 +02:00
As discussed on the mailing list, this variable isn't useful and if wanted would be better implemented by distros using pn-X overrides. This patch executes: find . -regex ".*\.\(bb\|inc\)$" | xargs sed -i '/^PRIORITY = ".*"$/d' against the tree removing the referenced. Thanks to Phil Blundell for the command. (From OE-Core rev: d122343362669c683acc4af295971a62cbc823fc) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
26 lines
658 B
BlitzBasic
26 lines
658 B
BlitzBasic
SUMMARY = "manage symlinks in /etc/rcN.d."
|
|
DESCRIPTION = "update-rc.d is a utilities that allows the management of symlinks to the initscripts in the /etc/rcN.d directory structure."
|
|
SECTION = "base"
|
|
|
|
LICENSE = "GPLv2+"
|
|
LIC_FILES_CHKSUM = "file://update-rc.d;beginline=5;endline=15;md5=148a48321b10eb37c1fa3ee02b940a75"
|
|
|
|
PR = "r4"
|
|
|
|
SRC_URI = "git://github.com/philb/update-rc.d.git;tag=update-rc.d_${PV};protocol=git \
|
|
file://add-verbose.patch;striplevel=1"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit allarch
|
|
|
|
do_compile() {
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${sbindir}
|
|
install -m 0755 ${S}/update-rc.d ${D}${sbindir}/update-rc.d
|
|
}
|
|
|
|
BBCLASSEXTEND = "native"
|