mirror of
https://git.yoctoproject.org/poky
synced 2026-02-22 01:19:41 +01:00
Having these the initramfs-framework recipe forced initramfs-framework users to build several tools they didn't need, and made it more difficult to declare the recipe as allarch. Fixes [YOCTO #12024]. (From OE-Core rev: e4cc1a22dd4fc9b3b12808c86213eb613f1ecb51) Signed-off-by: California Sullivan <california.l.sullivan@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 lines
498 B
BlitzBasic
19 lines
498 B
BlitzBasic
SUMMARY = "initramfs-framework module for live booting"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
RDEPENDS_${PN} = "initramfs-framework-base udev-extraconf"
|
|
|
|
PR = "r1"
|
|
|
|
FILESEXTRAPATHS_prepend := "${THISDIR}/initramfs-framework:"
|
|
SRC_URI = "file://setup-live"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
do_install() {
|
|
install -d ${D}/init.d
|
|
install -m 0755 ${WORKDIR}/setup-live ${D}/init.d/80-setup-live
|
|
}
|
|
|
|
FILES_${PN} = "/init.d/80-setup-live"
|