mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
initramfs-framework: split setup-live and install-efi into separate recipes
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>
This commit is contained in:
committed by
Richard Purdie
parent
9a2c33517d
commit
06c1139c51
@@ -0,0 +1,18 @@
|
||||
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"
|
||||
Reference in New Issue
Block a user