2002-09-05 14:50:51 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2002
|
|
|
|
# Sysgo Real-Time Solutions, GmbH <www.elinos.com>
|
|
|
|
# Marius Groeger <mgroeger@sysgo.de>
|
|
|
|
#
|
2013-07-08 07:37:19 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2002-09-05 14:50:51 +00:00
|
|
|
#
|
|
|
|
|
2013-12-25 23:46:49 +00:00
|
|
|
#
|
|
|
|
# !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.
|
|
|
|
#
|
|
|
|
|
|
|
|
#ifdef CONFIG_SPL_BUILD
|
2014-02-24 02:12:12 +00:00
|
|
|
OBJCOPYFLAGS += -j .text.0 -j .text.1
|
2013-12-25 23:46:49 +00:00
|
|
|
#endif
|