mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 12:32:12 +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>
25 lines
899 B
BlitzBasic
25 lines
899 B
BlitzBasic
SUMMARY = "Boot sequence organizer using LSB init.d dependencies"
|
|
DESCRIPTION = "This utility reorders the init.d boot scripts based on dependencies given in scripts' LSB comment \
|
|
headers, or in override files included in this package or added in /etc/insserv."
|
|
# There is no known home page for insserv
|
|
SECTION = "base"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
|
|
|
|
PR = "r0"
|
|
|
|
SRC_URI = "ftp://ftp.suse.com/pub/projects/init/${BPN}-${PV}.tar.bz2 \
|
|
file://makefile.patch \
|
|
file://disable_runtests.patch \
|
|
file://insserv.conf"
|
|
|
|
SRC_URI[md5sum] = "4a97d900855148842b1aa8f33b988b47"
|
|
SRC_URI[sha256sum] = "89a0a093b1cf3d802ad40568e64b496b493f51ff9825905c8bd12738b374ca47"
|
|
|
|
do_install () {
|
|
oe_runmake 'DESTDIR=${D}' install
|
|
install -m0644 ${WORKDIR}/insserv.conf ${D}${sysconfdir}/insserv.conf
|
|
}
|
|
|
|
BBCLASSEXTEND = "native"
|