mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01: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>
21 lines
462 B
BlitzBasic
21 lines
462 B
BlitzBasic
SUMMARY = "Initscript for auto-loading kernel modules on boot"
|
|
SECTION = "base"
|
|
LICENSE = "PD"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=7bf87fc37976e93ec66ad84fac58c098"
|
|
SRC_URI = "file://modutils.sh \
|
|
file://PD.patch"
|
|
PR = "r6"
|
|
|
|
INITSCRIPT_NAME = "modutils.sh"
|
|
INITSCRIPT_PARAMS = "start 05 S ."
|
|
|
|
inherit update-rc.d
|
|
|
|
do_compile () {
|
|
}
|
|
|
|
do_install () {
|
|
install -d ${D}${sysconfdir}/init.d/
|
|
install -m 0755 ${WORKDIR}/modutils.sh ${D}${sysconfdir}/init.d/
|
|
}
|