]> git.sur5r.net Git - u-boot/blobdiff - arch/arm/cpu/pxa/config.mk
kbuild: rename OBJCFLAGS to OBJCOPYFLAGS
[u-boot] / arch / arm / cpu / pxa / config.mk
index 535bca3e9f0ba100f5363b5c86dc1c9d533b905b..525f5d33b7025cdc14ea107d2feb87f77b25a449 100644 (file)
@@ -6,13 +6,17 @@
 # SPDX-License-Identifier:     GPL-2.0+
 #
 
-PLATFORM_RELFLAGS += -fno-common -ffixed-r8 -msoft-float
-
 PLATFORM_CPPFLAGS += -mcpu=xscale
-# =========================================================================
+
 #
-# Supply options according to compiler version
+# !WARNING!
+# The PXA's OneNAND SPL uses .text.0 and .text.1 segments to allow booting from
+# really small OneNAND memories where the mmap'd window is only 1KiB big. The
+# .text.0 contains only the bare minimum needed to load the real SPL into SRAM.
+# Add .text.0 and .text.1 into OBJFLAGS, so when the SPL is being objcopy'd,
+# they are not discarded.
 #
-# ========================================================================
-PF_RELFLAGS_SLB_AT := $(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,))
-PLATFORM_RELFLAGS += $(PF_RELFLAGS_SLB_AT)
+
+#ifdef CONFIG_SPL_BUILD
+OBJCOPYFLAGS += -j .text.0 -j .text.1
+#endif