mirror of
https://git.yoctoproject.org/poky
synced 2026-02-11 03:03:02 +01:00
An investigation into undocumented variables uncovered a few mispellings of the variable DESCRIPTION. Signed-off-by: Darren Hart <dvhart@linux.intel.com>
14 lines
317 B
BlitzBasic
14 lines
317 B
BlitzBasic
DESCRIPTION = "A live image init script"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${POKYBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
SRC_URI = "file://init-boot.sh"
|
|
|
|
PR = "r0"
|
|
|
|
do_install() {
|
|
install -m 0755 ${WORKDIR}/init-boot.sh ${D}/init
|
|
}
|
|
|
|
PACKAGE_ARCH = "all"
|
|
FILES_${PN} += " /init "
|