config.mk 575 B

123456789101112131415161718
  1. # SPDX-License-Identifier: GPL-2.0+
  2. #
  3. # (C) Copyright 2002
  4. # Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  5. # Marius Groeger <mgroeger@sysgo.de>
  6. #
  7. # !WARNING!
  8. # The PXA's OneNAND SPL uses .text.0 and .text.1 segments to allow booting from
  9. # really small OneNAND memories where the mmap'd window is only 1KiB big. The
  10. # .text.0 contains only the bare minimum needed to load the real SPL into SRAM.
  11. # Add .text.0 and .text.1 into OBJFLAGS, so when the SPL is being objcopy'd,
  12. # they are not discarded.
  13. #
  14. #ifdef CONFIG_SPL_BUILD
  15. OBJCOPYFLAGS += -j .text.0 -j .text.1
  16. #endif