mirror of
https://git.yoctoproject.org/poky
synced 2026-02-24 02:19:39 +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
552 B
BlitzBasic
19 lines
552 B
BlitzBasic
SUMMARY = "initramfs-framework module for installation option"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
RDEPENDS_${PN} = "initramfs-framework-base parted e2fsprogs-mke2fs dosfstools util-linux-blkid"
|
|
|
|
PR = "r1"
|
|
|
|
FILESEXTRAPATHS_prepend := "${THISDIR}/initramfs-framework:"
|
|
SRC_URI = "file://install-efi.sh"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
do_install() {
|
|
install -d ${D}/init.d
|
|
install -m 0755 ${WORKDIR}/install-efi.sh ${D}/init.d/install-efi.sh
|
|
}
|
|
|
|
FILES_${PN} = "/init.d/install-efi.sh"
|