diff options
author | Vikas Manocha <vikas.manocha@st.com> | 2017-05-28 12:55:11 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-09 11:23:59 -0400 |
commit | c6d9e9dbc3d02c03ea1f6671034317593a2ea4ff (patch) | |
tree | d8e3b9133a3e8b7dfceed5ef2274e0bb12e5540b /common/spl/Makefile | |
parent | b97476965bf292c13074e01de4bd39253de0ef66 (diff) | |
download | u-boot-c6d9e9dbc3d02c03ea1f6671034317593a2ea4ff.tar.gz |
SPL: Add XIP booting support
Enable support for XIP (execute in place) of U-Boot or kernel image. There is
no need to copy image from flash to ram if flash supports execute in place.
Signed-off-by: Vikas Manocha <vikas.manocha@st.com>
Reviewed-by: Alexandru Gagniuc <alex.g@adaptrum.com>
Diffstat (limited to 'common/spl/Makefile')
-rw-r--r-- | common/spl/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/spl/Makefile b/common/spl/Makefile index b3b34d6277..47a64dd7d0 100644 --- a/common/spl/Makefile +++ b/common/spl/Makefile @@ -12,6 +12,7 @@ ifdef CONFIG_SPL_BUILD obj-$(CONFIG_SPL_FRAMEWORK) += spl.o obj-$(CONFIG_SPL_LOAD_FIT) += spl_fit.o obj-$(CONFIG_SPL_NOR_SUPPORT) += spl_nor.o +obj-$(CONFIG_SPL_XIP_SUPPORT) += spl_xip.o obj-$(CONFIG_SPL_YMODEM_SUPPORT) += spl_ymodem.o ifndef CONFIG_SPL_UBI obj-$(CONFIG_SPL_NAND_SUPPORT) += spl_nand.o |