summaryrefslogtreecommitdiffstats
path: root/pbl
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2024-03-06 20:39:24 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2024-03-08 08:08:45 +0100
commit32da0a9de97718604ee1e2868f116b975a19e333 (patch)
tree92f7a4ad25af007117df8d2f2372218698b4b45e /pbl
parent281c2b56b9286e683a634cf70f8b594c936d32fa (diff)
downloadbarebox-32da0a9de97718604ee1e2868f116b975a19e333.tar.gz
barebox-32da0a9de97718604ee1e2868f116b975a19e333.tar.xz
pbl: make PBL_FULLY_PIC specific to ARM64
This has only been tested on ARM64 so far and quick test on a Raspberry Pi 3 Model B in 32-bit mode hangs, so mark this ARM64-specific for now. CPU_64 implies ARM already, but we list both anyway for documentation purposes. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Link: https://lore.barebox.org/20240306193924.712323-1-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'pbl')
-rw-r--r--pbl/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbl/Kconfig b/pbl/Kconfig
index 669a49a530..d1877a988d 100644
--- a/pbl/Kconfig
+++ b/pbl/Kconfig
@@ -48,7 +48,7 @@ config PBL_RELOCATABLE
config PBL_FULLY_PIC
bool "fully position-independent pbl image"
- depends on PBL_RELOCATABLE && ARM
+ depends on PBL_RELOCATABLE && ARM && CPU_64
help
Compared to CONFIG_PBL_RELOCATABLE, this image has no relocations in
the code sections.