mirror of
https://git.yoctoproject.org/poky
synced 2026-05-21 14:27:57 +02:00
A lot of our recipes had short one-line DESCRIPTION values and no SUMMARY value set. In this case it's much better to just set SUMMARY since DESCRIPTION is defaulted from SUMMARY anyway and then the SUMMARY is at least useful. I also took the opportunity to fix up a lot of the new SUMMARY values, making them concisely explain the function of the recipe / package where possible. (From OE-Core rev: b8feee3cf21f70ba4ec3b822d2f596d4fc02a292) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
1.0 KiB
BlitzBasic
31 lines
1.0 KiB
BlitzBasic
SUMMARY = "SysV init scripts which are only used in an LSB image"
|
|
SECTION = "base"
|
|
LICENSE = "GPLv2"
|
|
DEPENDS = "popt glib-2.0"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=ebf4e8b49780ab187d51bd26aaa022c6"
|
|
|
|
S="${WORKDIR}/initscripts-${PV}"
|
|
SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/initscripts/initscripts-9.50.tar.bz2/7252642952d33be10cc00beb862c7b7b/initscripts-9.50.tar.bz2 \
|
|
file://functions.patch \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "7252642952d33be10cc00beb862c7b7b"
|
|
SRC_URI[sha256sum] = "1d8fb32b9a7de0c24437acdab27d71deb58c05314f81978ec2aea574fba862e0"
|
|
|
|
inherit update-alternatives
|
|
|
|
ALTERNATIVE_PRIORITY = "100"
|
|
ALTERNATIVE_${PN} = "functions"
|
|
ALTERNATIVE_LINK_NAME[functions] = "${sysconfdir}/init.d/functions"
|
|
|
|
# Since we are only taking the patched version of functions, no need to
|
|
# configure or compile anything so do not execute these
|
|
do_configure[noexec] = "1"
|
|
do_compile[noexec] = "1"
|
|
|
|
do_install(){
|
|
install -d ${D}${sysconfdir}/init.d/
|
|
install -m 0644 ${S}/rc.d/init.d/functions ${D}${sysconfdir}/init.d/functions
|
|
}
|