diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-28 23:28:15 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-02 15:44:10 +0100 |
| commit | bb6ddc3691ab04162ec5fd69a2d5e7876713fd15 (patch) | |
| tree | 76e376b01253c3aace1a98a5021bcaad3c92e861 /meta/recipes-core/initrdscripts | |
| parent | fcc456ee4b8f619134abb4649db53c638074082c (diff) | |
| download | poky-bb6ddc3691ab04162ec5fd69a2d5e7876713fd15.tar.gz | |
Convert to new override syntax
This is the result of automated script conversion:
scripts/contrib/convert-overrides.py <oe-core directory>
converting the metadata to use ":" as the override character instead of "_".
(From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/initrdscripts')
11 files changed, 54 insertions, 54 deletions
diff --git a/meta/recipes-core/initrdscripts/initramfs-boot_1.0.bb b/meta/recipes-core/initrdscripts/initramfs-boot_1.0.bb index 29ec5ec2ff..ab460ac797 100644 --- a/meta/recipes-core/initrdscripts/initramfs-boot_1.0.bb +++ b/meta/recipes-core/initrdscripts/initramfs-boot_1.0.bb | |||
| @@ -18,4 +18,4 @@ do_install() { | |||
| 18 | 18 | ||
| 19 | inherit allarch | 19 | inherit allarch |
| 20 | 20 | ||
| 21 | FILES_${PN} += "/init /dev/console" | 21 | FILES:${PN} += "/init /dev/console" |
diff --git a/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb b/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb index fe24215b46..9e8c1dc3ab 100644 --- a/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb +++ b/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb | |||
| @@ -1,8 +1,8 @@ | |||
| 1 | SUMMARY = "Modular initramfs system" | 1 | SUMMARY = "Modular initramfs system" |
| 2 | LICENSE = "MIT" | 2 | LICENSE = "MIT" |
| 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
| 4 | RDEPENDS_${PN} += "${VIRTUAL-RUNTIME_base-utils}" | 4 | RDEPENDS:${PN} += "${VIRTUAL-RUNTIME_base-utils}" |
| 5 | RRECOMMENDS_${PN} = "${VIRTUAL-RUNTIME_base-utils-syslog}" | 5 | RRECOMMENDS:${PN} = "${VIRTUAL-RUNTIME_base-utils-syslog}" |
| 6 | 6 | ||
| 7 | PR = "r4" | 7 | PR = "r4" |
| 8 | 8 | ||
| @@ -66,7 +66,7 @@ PACKAGES = "${PN}-base \ | |||
| 66 | initramfs-module-lvm \ | 66 | initramfs-module-lvm \ |
| 67 | " | 67 | " |
| 68 | 68 | ||
| 69 | FILES_${PN}-base = "/init /init.d/99-finish /dev" | 69 | FILES:${PN}-base = "/init /init.d/99-finish /dev" |
| 70 | 70 | ||
| 71 | # 99-finish in base depends on some other module which mounts | 71 | # 99-finish in base depends on some other module which mounts |
| 72 | # the rootfs, like 90-rootfs. To replace that default, use | 72 | # the rootfs, like 90-rootfs. To replace that default, use |
| @@ -74,36 +74,36 @@ FILES_${PN}-base = "/init /init.d/99-finish /dev" | |||
| 74 | # initramfs recipe and install something else, or install | 74 | # initramfs recipe and install something else, or install |
| 75 | # something that runs earlier (for example, a 89-my-rootfs) | 75 | # something that runs earlier (for example, a 89-my-rootfs) |
| 76 | # and mounts the rootfs. Then 90-rootfs will proceed immediately. | 76 | # and mounts the rootfs. Then 90-rootfs will proceed immediately. |
| 77 | RRECOMMENDS_${PN}-base += "initramfs-module-rootfs" | 77 | RRECOMMENDS:${PN}-base += "initramfs-module-rootfs" |
| 78 | 78 | ||
| 79 | SUMMARY_initramfs-module-exec = "initramfs support for easy execution of applications" | 79 | SUMMARY:initramfs-module-exec = "initramfs support for easy execution of applications" |
| 80 | RDEPENDS_initramfs-module-exec = "${PN}-base" | 80 | RDEPENDS:initramfs-module-exec = "${PN}-base" |
| 81 | FILES_initramfs-module-exec = "/init.d/89-exec" | 81 | FILES:initramfs-module-exec = "/init.d/89-exec" |
| 82 | 82 | ||
| 83 | SUMMARY_initramfs-module-mdev = "initramfs support for mdev" | 83 | SUMMARY:initramfs-module-mdev = "initramfs support for mdev" |
| 84 | RDEPENDS_initramfs-module-mdev = "${PN}-base busybox-mdev" | 84 | RDEPENDS:initramfs-module-mdev = "${PN}-base busybox-mdev" |
| 85 | FILES_initramfs-module-mdev = "/init.d/01-mdev" | 85 | FILES:initramfs-module-mdev = "/init.d/01-mdev" |
| 86 | 86 | ||
| 87 | SUMMARY_initramfs-module-udev = "initramfs support for udev" | 87 | SUMMARY:initramfs-module-udev = "initramfs support for udev" |
| 88 | RDEPENDS_initramfs-module-udev = "${PN}-base udev" | 88 | RDEPENDS:initramfs-module-udev = "${PN}-base udev" |
| 89 | FILES_initramfs-module-udev = "/init.d/01-udev" | 89 | FILES:initramfs-module-udev = "/init.d/01-udev" |
| 90 | 90 | ||
| 91 | SUMMARY_initramfs-module-e2fs = "initramfs support for ext4/ext3/ext2 filesystems" | 91 | SUMMARY:initramfs-module-e2fs = "initramfs support for ext4/ext3/ext2 filesystems" |
| 92 | RDEPENDS_initramfs-module-e2fs = "${PN}-base" | 92 | RDEPENDS:initramfs-module-e2fs = "${PN}-base" |
| 93 | FILES_initramfs-module-e2fs = "/init.d/10-e2fs" | 93 | FILES:initramfs-module-e2fs = "/init.d/10-e2fs" |
| 94 | 94 | ||
| 95 | SUMMARY_initramfs-module-nfsrootfs = "initramfs support for locating and mounting the root partition via nfs" | 95 | SUMMARY:initramfs-module-nfsrootfs = "initramfs support for locating and mounting the root partition via nfs" |
| 96 | RDEPENDS_initramfs-module-nfsrootfs = "${PN}-base" | 96 | RDEPENDS:initramfs-module-nfsrootfs = "${PN}-base" |
| 97 | FILES_initramfs-module-nfsrootfs = "/init.d/85-nfsrootfs" | 97 | FILES:initramfs-module-nfsrootfs = "/init.d/85-nfsrootfs" |
| 98 | 98 | ||
| 99 | SUMMARY_initramfs-module-rootfs = "initramfs support for locating and mounting the root partition" | 99 | SUMMARY:initramfs-module-rootfs = "initramfs support for locating and mounting the root partition" |
| 100 | RDEPENDS_initramfs-module-rootfs = "${PN}-base" | 100 | RDEPENDS:initramfs-module-rootfs = "${PN}-base" |
| 101 | FILES_initramfs-module-rootfs = "/init.d/90-rootfs" | 101 | FILES:initramfs-module-rootfs = "/init.d/90-rootfs" |
| 102 | 102 | ||
| 103 | SUMMARY_initramfs-module-debug = "initramfs dynamic debug support" | 103 | SUMMARY:initramfs-module-debug = "initramfs dynamic debug support" |
| 104 | RDEPENDS_initramfs-module-debug = "${PN}-base" | 104 | RDEPENDS:initramfs-module-debug = "${PN}-base" |
| 105 | FILES_initramfs-module-debug = "/init.d/00-debug" | 105 | FILES:initramfs-module-debug = "/init.d/00-debug" |
| 106 | 106 | ||
| 107 | SUMMARY_initramfs-module-lvm = "initramfs lvm rootfs support" | 107 | SUMMARY:initramfs-module-lvm = "initramfs lvm rootfs support" |
| 108 | RDEPENDS_initramfs-module-lvm = "${PN}-base" | 108 | RDEPENDS:initramfs-module-lvm = "${PN}-base" |
| 109 | FILES_initramfs-module-lvm = "/init.d/09-lvm" | 109 | FILES:initramfs-module-lvm = "/init.d/09-lvm" |
diff --git a/meta/recipes-core/initrdscripts/initramfs-live-boot-tiny_1.0.bb b/meta/recipes-core/initrdscripts/initramfs-live-boot-tiny_1.0.bb index 7a9a8ecae2..59a530506a 100644 --- a/meta/recipes-core/initrdscripts/initramfs-live-boot-tiny_1.0.bb +++ b/meta/recipes-core/initrdscripts/initramfs-live-boot-tiny_1.0.bb | |||
| @@ -2,7 +2,7 @@ SUMMARY = "Live image init script" | |||
| 2 | LICENSE = "MIT" | 2 | LICENSE = "MIT" |
| 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
| 4 | DEPENDS = "virtual/kernel" | 4 | DEPENDS = "virtual/kernel" |
| 5 | RDEPENDS_${PN} = "busybox-mdev" | 5 | RDEPENDS:${PN} = "busybox-mdev" |
| 6 | SRC_URI = "file://init-live.sh" | 6 | SRC_URI = "file://init-live.sh" |
| 7 | 7 | ||
| 8 | PR = "r12" | 8 | PR = "r12" |
| @@ -15,7 +15,7 @@ do_install() { | |||
| 15 | mknod -m 622 ${D}/dev/console c 5 1 | 15 | mknod -m 622 ${D}/dev/console c 5 1 |
| 16 | } | 16 | } |
| 17 | 17 | ||
| 18 | FILES_${PN} += " /init /dev " | 18 | FILES:${PN} += " /init /dev " |
| 19 | 19 | ||
| 20 | # Due to kernel dependency | 20 | # Due to kernel dependency |
| 21 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 21 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
diff --git a/meta/recipes-core/initrdscripts/initramfs-live-boot_1.0.bb b/meta/recipes-core/initrdscripts/initramfs-live-boot_1.0.bb index 57b30254a6..8f56d7ab90 100644 --- a/meta/recipes-core/initrdscripts/initramfs-live-boot_1.0.bb +++ b/meta/recipes-core/initrdscripts/initramfs-live-boot_1.0.bb | |||
| @@ -2,7 +2,7 @@ SUMMARY = "Live image init script" | |||
| 2 | LICENSE = "MIT" | 2 | LICENSE = "MIT" |
| 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
| 4 | DEPENDS = "virtual/kernel" | 4 | DEPENDS = "virtual/kernel" |
| 5 | RDEPENDS_${PN} = "udev udev-extraconf" | 5 | RDEPENDS:${PN} = "udev udev-extraconf" |
| 6 | SRC_URI = "file://init-live.sh" | 6 | SRC_URI = "file://init-live.sh" |
| 7 | 7 | ||
| 8 | PR = "r12" | 8 | PR = "r12" |
| @@ -15,7 +15,7 @@ do_install() { | |||
| 15 | mknod -m 622 ${D}/dev/console c 5 1 | 15 | mknod -m 622 ${D}/dev/console c 5 1 |
| 16 | } | 16 | } |
| 17 | 17 | ||
| 18 | FILES_${PN} += " /init /dev " | 18 | FILES:${PN} += " /init /dev " |
| 19 | 19 | ||
| 20 | # Due to kernel dependency | 20 | # Due to kernel dependency |
| 21 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 21 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
diff --git a/meta/recipes-core/initrdscripts/initramfs-live-install-efi-testfs_1.0.bb b/meta/recipes-core/initrdscripts/initramfs-live-install-efi-testfs_1.0.bb index c03bd2d765..495eccbeda 100644 --- a/meta/recipes-core/initrdscripts/initramfs-live-install-efi-testfs_1.0.bb +++ b/meta/recipes-core/initrdscripts/initramfs-live-install-efi-testfs_1.0.bb | |||
| @@ -3,7 +3,7 @@ LICENSE = "MIT" | |||
| 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
| 4 | SRC_URI = "file://init-install-efi-testfs.sh" | 4 | SRC_URI = "file://init-install-efi-testfs.sh" |
| 5 | 5 | ||
| 6 | RDEPENDS_${PN} = "parted e2fsprogs-mke2fs dosfstools" | 6 | RDEPENDS:${PN} = "parted e2fsprogs-mke2fs dosfstools" |
| 7 | 7 | ||
| 8 | S = "${WORKDIR}" | 8 | S = "${WORKDIR}" |
| 9 | 9 | ||
| @@ -12,5 +12,5 @@ do_install() { | |||
| 12 | } | 12 | } |
| 13 | 13 | ||
| 14 | INHIBIT_DEFAULT_DEPS = "1" | 14 | INHIBIT_DEFAULT_DEPS = "1" |
| 15 | FILES_${PN} = " /install-efi.sh " | 15 | FILES:${PN} = " /install-efi.sh " |
| 16 | COMPATIBLE_HOST = "(i.86|x86_64).*-linux" | 16 | COMPATIBLE_HOST = "(i.86|x86_64).*-linux" |
diff --git a/meta/recipes-core/initrdscripts/initramfs-live-install-efi_1.0.bb b/meta/recipes-core/initrdscripts/initramfs-live-install-efi_1.0.bb index cc842ae8b7..ecbd567d6c 100644 --- a/meta/recipes-core/initrdscripts/initramfs-live-install-efi_1.0.bb +++ b/meta/recipes-core/initrdscripts/initramfs-live-install-efi_1.0.bb | |||
| @@ -5,8 +5,8 @@ SRC_URI = "file://init-install-efi.sh" | |||
| 5 | 5 | ||
| 6 | PR = "r1" | 6 | PR = "r1" |
| 7 | 7 | ||
| 8 | RDEPENDS_${PN} = "parted e2fsprogs-mke2fs dosfstools util-linux-blkid ${VIRTUAL-RUNTIME_base-utils}" | 8 | RDEPENDS:${PN} = "parted e2fsprogs-mke2fs dosfstools util-linux-blkid ${VIRTUAL-RUNTIME_base-utils}" |
| 9 | RRECOMMENDS_${PN} = "${VIRTUAL-RUNTIME_base-utils-syslog}" | 9 | RRECOMMENDS:${PN} = "${VIRTUAL-RUNTIME_base-utils-syslog}" |
| 10 | 10 | ||
| 11 | S = "${WORKDIR}" | 11 | S = "${WORKDIR}" |
| 12 | 12 | ||
| @@ -20,6 +20,6 @@ do_install() { | |||
| 20 | #inherit allarch | 20 | #inherit allarch |
| 21 | INHIBIT_DEFAULT_DEPS = "1" | 21 | INHIBIT_DEFAULT_DEPS = "1" |
| 22 | 22 | ||
| 23 | FILES_${PN} = " /install-efi.sh " | 23 | FILES:${PN} = " /install-efi.sh " |
| 24 | 24 | ||
| 25 | COMPATIBLE_HOST = "(i.86.*|x86_64.*|aarch64.*)-linux" | 25 | COMPATIBLE_HOST = "(i.86.*|x86_64.*|aarch64.*)-linux" |
diff --git a/meta/recipes-core/initrdscripts/initramfs-live-install-testfs_1.0.bb b/meta/recipes-core/initrdscripts/initramfs-live-install-testfs_1.0.bb index 937bfd4d38..d347e323b3 100644 --- a/meta/recipes-core/initrdscripts/initramfs-live-install-testfs_1.0.bb +++ b/meta/recipes-core/initrdscripts/initramfs-live-install-testfs_1.0.bb | |||
| @@ -3,7 +3,7 @@ LICENSE = "MIT" | |||
| 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
| 4 | SRC_URI = "file://init-install-testfs.sh" | 4 | SRC_URI = "file://init-install-testfs.sh" |
| 5 | 5 | ||
| 6 | RDEPENDS_${PN} = "grub parted e2fsprogs-mke2fs" | 6 | RDEPENDS:${PN} = "grub parted e2fsprogs-mke2fs" |
| 7 | 7 | ||
| 8 | S = "${WORKDIR}" | 8 | S = "${WORKDIR}" |
| 9 | 9 | ||
| @@ -12,5 +12,5 @@ do_install() { | |||
| 12 | } | 12 | } |
| 13 | 13 | ||
| 14 | INHIBIT_DEFAULT_DEPS = "1" | 14 | INHIBIT_DEFAULT_DEPS = "1" |
| 15 | FILES_${PN} = " /install.sh " | 15 | FILES:${PN} = " /install.sh " |
| 16 | COMPATIBLE_HOST = "(i.86|x86_64).*-linux" | 16 | COMPATIBLE_HOST = "(i.86|x86_64).*-linux" |
diff --git a/meta/recipes-core/initrdscripts/initramfs-live-install_1.0.bb b/meta/recipes-core/initrdscripts/initramfs-live-install_1.0.bb index 48fc0c4a76..674d49ecdf 100644 --- a/meta/recipes-core/initrdscripts/initramfs-live-install_1.0.bb +++ b/meta/recipes-core/initrdscripts/initramfs-live-install_1.0.bb | |||
| @@ -7,8 +7,8 @@ PR = "r9" | |||
| 7 | 7 | ||
| 8 | S = "${WORKDIR}" | 8 | S = "${WORKDIR}" |
| 9 | 9 | ||
| 10 | RDEPENDS_${PN} = "grub parted e2fsprogs-mke2fs util-linux-blkid ${VIRTUAL-RUNTIME_base-utils}" | 10 | RDEPENDS:${PN} = "grub parted e2fsprogs-mke2fs util-linux-blkid ${VIRTUAL-RUNTIME_base-utils}" |
| 11 | RRECOMMENDS_${PN} = "${VIRTUAL-RUNTIME_base-utils-syslog}" | 11 | RRECOMMENDS:${PN} = "${VIRTUAL-RUNTIME_base-utils-syslog}" |
| 12 | 12 | ||
| 13 | do_install() { | 13 | do_install() { |
| 14 | install -m 0755 ${WORKDIR}/init-install.sh ${D}/install.sh | 14 | install -m 0755 ${WORKDIR}/init-install.sh ${D}/install.sh |
| @@ -20,6 +20,6 @@ do_install() { | |||
| 20 | #inherit allarch | 20 | #inherit allarch |
| 21 | INHIBIT_DEFAULT_DEPS = "1" | 21 | INHIBIT_DEFAULT_DEPS = "1" |
| 22 | 22 | ||
| 23 | FILES_${PN} = " /install.sh " | 23 | FILES:${PN} = " /install.sh " |
| 24 | 24 | ||
| 25 | COMPATIBLE_HOST = "(i.86.*|x86_64.*|aarch64.*)-linux" | 25 | COMPATIBLE_HOST = "(i.86.*|x86_64.*|aarch64.*)-linux" |
diff --git a/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb b/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb index 523138cff3..fb19484555 100644 --- a/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb +++ b/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb | |||
| @@ -1,8 +1,8 @@ | |||
| 1 | SUMMARY = "initramfs-framework module for EFI installation option" | 1 | SUMMARY = "initramfs-framework module for EFI installation option" |
| 2 | LICENSE = "MIT" | 2 | LICENSE = "MIT" |
| 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
| 4 | RDEPENDS_${PN} = "initramfs-framework-base parted e2fsprogs-mke2fs dosfstools util-linux-blkid ${VIRTUAL-RUNTIME_base-utils}" | 4 | RDEPENDS:${PN} = "initramfs-framework-base parted e2fsprogs-mke2fs dosfstools util-linux-blkid ${VIRTUAL-RUNTIME_base-utils}" |
| 5 | RRECOMMENDS_${PN} = "${VIRTUAL-RUNTIME_base-utils-syslog}" | 5 | RRECOMMENDS:${PN} = "${VIRTUAL-RUNTIME_base-utils-syslog}" |
| 6 | 6 | ||
| 7 | PR = "r4" | 7 | PR = "r4" |
| 8 | 8 | ||
| @@ -15,4 +15,4 @@ do_install() { | |||
| 15 | install -m 0755 ${WORKDIR}/init-install-efi.sh ${D}/init.d/install-efi.sh | 15 | install -m 0755 ${WORKDIR}/init-install-efi.sh ${D}/init.d/install-efi.sh |
| 16 | } | 16 | } |
| 17 | 17 | ||
| 18 | FILES_${PN} = "/init.d/install-efi.sh" | 18 | FILES:${PN} = "/init.d/install-efi.sh" |
diff --git a/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb b/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb index 56898e824f..4d48d54e9e 100644 --- a/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb +++ b/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb | |||
| @@ -1,13 +1,13 @@ | |||
| 1 | SUMMARY = "initramfs-framework module for installation option" | 1 | SUMMARY = "initramfs-framework module for installation option" |
| 2 | LICENSE = "MIT" | 2 | LICENSE = "MIT" |
| 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
| 4 | RDEPENDS_${PN} = "initramfs-framework-base grub parted e2fsprogs-mke2fs util-linux-blkid ${VIRTUAL-RUNTIME_base-utils}" | 4 | RDEPENDS:${PN} = "initramfs-framework-base grub parted e2fsprogs-mke2fs util-linux-blkid ${VIRTUAL-RUNTIME_base-utils}" |
| 5 | RRECOMMENDS_${PN} = "${VIRTUAL-RUNTIME_base-utils-syslog}" | 5 | RRECOMMENDS:${PN} = "${VIRTUAL-RUNTIME_base-utils-syslog}" |
| 6 | 6 | ||
| 7 | # The same restriction as grub | 7 | # The same restriction as grub |
| 8 | COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*)-(linux.*|freebsd.*)' | 8 | COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*)-(linux.*|freebsd.*)' |
| 9 | COMPATIBLE_HOST_armv7a = 'null' | 9 | COMPATIBLE_HOST:armv7a = 'null' |
| 10 | COMPATIBLE_HOST_armv7ve = 'null' | 10 | COMPATIBLE_HOST:armv7ve = 'null' |
| 11 | 11 | ||
| 12 | PR = "r1" | 12 | PR = "r1" |
| 13 | 13 | ||
| @@ -20,4 +20,4 @@ do_install() { | |||
| 20 | install -m 0755 ${WORKDIR}/init-install.sh ${D}/init.d/install.sh | 20 | install -m 0755 ${WORKDIR}/init-install.sh ${D}/init.d/install.sh |
| 21 | } | 21 | } |
| 22 | 22 | ||
| 23 | FILES_${PN} = "/init.d/install.sh" | 23 | FILES:${PN} = "/init.d/install.sh" |
diff --git a/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb b/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb index 4d2fe9dd2b..d8ce024b83 100644 --- a/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb +++ b/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb | |||
| @@ -1,13 +1,13 @@ | |||
| 1 | SUMMARY = "initramfs-framework module for live booting" | 1 | SUMMARY = "initramfs-framework module for live booting" |
| 2 | LICENSE = "MIT" | 2 | LICENSE = "MIT" |
| 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
| 4 | RDEPENDS_${PN} = "initramfs-framework-base udev-extraconf" | 4 | RDEPENDS:${PN} = "initramfs-framework-base udev-extraconf" |
| 5 | 5 | ||
| 6 | PR = "r4" | 6 | PR = "r4" |
| 7 | 7 | ||
| 8 | inherit allarch | 8 | inherit allarch |
| 9 | 9 | ||
| 10 | FILESEXTRAPATHS_prepend := "${THISDIR}/initramfs-framework:" | 10 | FILESEXTRAPATHS:prepend := "${THISDIR}/initramfs-framework:" |
| 11 | SRC_URI = "file://setup-live" | 11 | SRC_URI = "file://setup-live" |
| 12 | 12 | ||
| 13 | S = "${WORKDIR}" | 13 | S = "${WORKDIR}" |
| @@ -17,4 +17,4 @@ do_install() { | |||
| 17 | install -m 0755 ${WORKDIR}/setup-live ${D}/init.d/80-setup-live | 17 | install -m 0755 ${WORKDIR}/setup-live ${D}/init.d/80-setup-live |
| 18 | } | 18 | } |
| 19 | 19 | ||
| 20 | FILES_${PN} = "/init.d/80-setup-live" | 20 | FILES:${PN} = "/init.d/80-setup-live" |
