diff options
| author | Khem Raj <raj.khem@gmail.com> | 2024-05-14 10:05:20 -0700 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-05-23 08:44:44 -0700 |
| commit | c33cfad1b0e1f84f6605689457e16fb0518ee383 (patch) | |
| tree | 9a280a37e62ddbfda807dea68419ab457bbe657a /meta-initramfs | |
| parent | ffc64e9c6fee0af7eea3466135416d011172a5e6 (diff) | |
| download | meta-openembedded-c33cfad1b0e1f84f6605689457e16fb0518ee383.tar.gz | |
recipes: Switch away from S = WORKDIR
Make it dependent on UNPACKDIR instead
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-initramfs')
| -rw-r--r-- | meta-initramfs/recipes-bsp/kexecboot/kexecboot-cfg_0.2.bb | 3 | ||||
| -rw-r--r-- | meta-initramfs/recipes-core/initrdscripts/initramfs-debug_1.0.bb | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/meta-initramfs/recipes-bsp/kexecboot/kexecboot-cfg_0.2.bb b/meta-initramfs/recipes-bsp/kexecboot/kexecboot-cfg_0.2.bb index 2dce19c6be..d8134b228c 100644 --- a/meta-initramfs/recipes-bsp/kexecboot/kexecboot-cfg_0.2.bb +++ b/meta-initramfs/recipes-bsp/kexecboot/kexecboot-cfg_0.2.bb | |||
| @@ -6,7 +6,8 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda | |||
| 6 | 6 | ||
| 7 | SRC_URI = "file://icon.xpm" | 7 | SRC_URI = "file://icon.xpm" |
| 8 | 8 | ||
| 9 | S = "${WORKDIR}" | 9 | S = "${WORKDIR}/sources" |
| 10 | UNPACKDIR = "${S}" | ||
| 10 | 11 | ||
| 11 | do_install:prepend () { | 12 | do_install:prepend () { |
| 12 | echo '# /boot/boot.cfg - KEXECBOOT configuration file. | 13 | echo '# /boot/boot.cfg - KEXECBOOT configuration file. |
diff --git a/meta-initramfs/recipes-core/initrdscripts/initramfs-debug_1.0.bb b/meta-initramfs/recipes-core/initrdscripts/initramfs-debug_1.0.bb index 4c06346570..c2b3faddda 100644 --- a/meta-initramfs/recipes-core/initrdscripts/initramfs-debug_1.0.bb +++ b/meta-initramfs/recipes-core/initrdscripts/initramfs-debug_1.0.bb | |||
| @@ -3,10 +3,11 @@ LICENSE = "MIT" | |||
| 3 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" | 3 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" |
| 4 | SRC_URI = "file://init-debug.sh" | 4 | SRC_URI = "file://init-debug.sh" |
| 5 | 5 | ||
| 6 | S = "${WORKDIR}" | 6 | S = "${WORKDIR}/sources" |
| 7 | UNPACKDIR = "${S}" | ||
| 7 | 8 | ||
| 8 | do_install() { | 9 | do_install() { |
| 9 | install -m 0755 ${WORKDIR}/init-debug.sh ${D}/init | 10 | install -m 0755 ${UNPACKDIR}/init-debug.sh ${D}/init |
| 10 | } | 11 | } |
| 11 | 12 | ||
| 12 | inherit allarch | 13 | inherit allarch |
