diff options
author | Ross Burton <ross.burton@arm.com> | 2025-06-05 17:06:24 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-06-09 17:43:41 +0100 |
commit | dfb58eeeab676b196c273ab6e4041e94cee10d1d (patch) | |
tree | 19ec4d44e3b9a5fdb721552a68ee26cadec2d45b | |
parent | 444371bee60db595f47515132900587e833b1160 (diff) | |
download | poky-dfb58eeeab676b196c273ab6e4041e94cee10d1d.tar.gz |
u-boot: move arm64 disabling fragments to versioned recipe
More than just the u-boot_2025.04.bb includes u-boot-common.inc, such as
u-boot_2023.07.02.bb in meta-arm.
To avoid other recipes having to carry patches that may not affect them,
move the files to be specific to the recipe itself.
(From OE-Core rev: 3bb0f87a1d13f86836dc44adee5621c3146863d3)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-bsp/u-boot/u-boot-common.inc | 4 | ||||
-rw-r--r-- | meta/recipes-bsp/u-boot/u-boot_2025.04.bb | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-bsp/u-boot/u-boot-common.inc b/meta/recipes-bsp/u-boot/u-boot-common.inc index 6cd9c39430..fd1eab5cdd 100644 --- a/meta/recipes-bsp/u-boot/u-boot-common.inc +++ b/meta/recipes-bsp/u-boot/u-boot-common.inc | |||
@@ -16,10 +16,6 @@ SRCREV = "34820924edbc4ec7803eb89d9852f4b870fa760a" | |||
16 | 16 | ||
17 | SRC_URI = "git://source.denx.de/u-boot/u-boot.git;protocol=https;branch=master;tag=v${PV}" | 17 | SRC_URI = "git://source.denx.de/u-boot/u-boot.git;protocol=https;branch=master;tag=v${PV}" |
18 | 18 | ||
19 | # workarounds for aarch64 kvm qemu boot regressions | ||
20 | SRC_URI:append:qemuarm64 = " file://disable-CONFIG_BLOBLIST.cfg file://disable_CONFIG_USB.cfg" | ||
21 | SRC_URI:append:genericarm64 = " file://disable-CONFIG_BLOBLIST.cfg file://disable_CONFIG_USB.cfg" | ||
22 | |||
23 | S = "${WORKDIR}/git" | 19 | S = "${WORKDIR}/git" |
24 | B = "${WORKDIR}/build" | 20 | B = "${WORKDIR}/build" |
25 | 21 | ||
diff --git a/meta/recipes-bsp/u-boot/u-boot_2025.04.bb b/meta/recipes-bsp/u-boot/u-boot_2025.04.bb index db8b2d58b4..89e964f627 100644 --- a/meta/recipes-bsp/u-boot/u-boot_2025.04.bb +++ b/meta/recipes-bsp/u-boot/u-boot_2025.04.bb | |||
@@ -2,3 +2,7 @@ require u-boot-common.inc | |||
2 | require u-boot.inc | 2 | require u-boot.inc |
3 | 3 | ||
4 | DEPENDS += "bc-native dtc-native gnutls-native python3-pyelftools-native" | 4 | DEPENDS += "bc-native dtc-native gnutls-native python3-pyelftools-native" |
5 | |||
6 | # workarounds for aarch64 kvm qemu boot regressions | ||
7 | SRC_URI:append:qemuarm64 = " file://disable-CONFIG_BLOBLIST.cfg file://disable_CONFIG_USB.cfg" | ||
8 | SRC_URI:append:genericarm64 = " file://disable-CONFIG_BLOBLIST.cfg file://disable_CONFIG_USB.cfg" | ||