initramfs-live-install-efi_1.0.bb 806 B

123456789101112131415161718192021222324
  1. SUMMARY = "Live image install script for grub-efi"
  2. LICENSE = "MIT"
  3. LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
  4. SRC_URI = "file://init-install-efi.sh"
  5. RDEPENDS:${PN} = "parted e2fsprogs-mke2fs dosfstools util-linux-blkid ${VIRTUAL-RUNTIME_base-utils}"
  6. RRECOMMENDS:${PN} = "${VIRTUAL-RUNTIME_base-utils-syslog}"
  7. S = "${WORKDIR}/sources"
  8. UNPACKDIR = "${S}"
  9. do_install() {
  10. install -m 0755 ${S}/init-install-efi.sh ${D}/install-efi.sh
  11. }
  12. # While this package maybe an allarch due to it being a
  13. # simple script, reality is that it is Host specific based
  14. # on the COMPATIBLE_HOST below, which needs to take precedence
  15. #inherit allarch
  16. INHIBIT_DEFAULT_DEPS = "1"
  17. FILES:${PN} = " /install-efi.sh "
  18. COMPATIBLE_HOST = "(i.86.*|x86_64.*|aarch64.*)-linux"