diff mbox series

[07/25] kernel-arch: Don't export UBOOT_ARCH

Message ID 20260802102854.3952760-8-richard.purdie@linuxfoundation.org
State New
Headers show
Series Class file improvements | expand

Commit Message

Richard Purdie Aug. 2, 2026, 10:28 a.m. UTC
I think only our code uses this variable. For that we don't need to export
to the environment, so stop doing it.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 meta/classes-recipe/kernel-arch.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta/classes-recipe/kernel-arch.bbclass b/meta/classes-recipe/kernel-arch.bbclass
index fd6bce11460..bc90e2e840b 100644
--- a/meta/classes-recipe/kernel-arch.bbclass
+++ b/meta/classes-recipe/kernel-arch.bbclass
@@ -8,7 +8,7 @@ 
 # modules). return value must match one of the architecture directories
 # in the kernel source "arch" directory
 export ARCH = "${@oe.kernel.map_kernel_arch(d)}"
-export UBOOT_ARCH = "${@oe.kernel.map_uboot_arch(d)}"
+UBOOT_ARCH = "${@oe.kernel.map_uboot_arch(d)}"
 
 # Set TARGET_??_KERNEL_ARCH in the machine .conf to set architecture
 # specific options necessary for building the kernel and modules.