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

12345678910111213141516171819202122
  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. PR = "r1"
  6. RDEPENDS_${PN} = "parted e2fsprogs-mke2fs dosfstools"
  7. do_install() {
  8. install -m 0755 ${WORKDIR}/init-install-efi.sh ${D}/install-efi.sh
  9. }
  10. # While this package maybe an allarch due to it being a
  11. # simple script, reality is that it is Host specific based
  12. # on the COMPATIBLE_HOST below, which needs to take precedence
  13. #inherit allarch
  14. INHIBIT_DEFAULT_DEPS = "1"
  15. FILES_${PN} = " /install-efi.sh "
  16. COMPATIBLE_HOST = "(i.86|x86_64).*-linux"