diff options
author | Stefan Agner | 2016-12-23 07:51:53 +0100 |
---|---|---|
committer | Tom Rini | 2017-01-14 16:46:26 -0500 |
commit | 22802f4e3a0a8ead928a0af06b7719b604a98afb (patch) | |
tree | 9033e0ac38202883f80a26c3c5b832c9da44529a /common/spl/Makefile | |
parent | f417d40fe2f0663c5e98b1e123f6fb982b424450 (diff) |
spl: move RAM boot support in separate file
Add a new top-level config option so support booting an image stored
in RAM. This allows to move the RAM boot support into a sparate file
and having a single condition to compile that file.
Signed-off-by: Stefan Agner <stefan.agner@toradex.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 ed02635e720..1933cbdfed0 100644 --- a/common/spl/Makefile +++ b/common/spl/Makefile @@ -26,4 +26,5 @@ obj-$(CONFIG_SPL_EXT_SUPPORT) += spl_ext.o obj-$(CONFIG_SPL_SATA_SUPPORT) += spl_sata.o obj-$(CONFIG_SPL_DFU_SUPPORT) += spl_dfu.o obj-$(CONFIG_SPL_SPI_LOAD) += spl_spi.o +obj-$(CONFIG_SPL_RAM_SUPPORT) += spl_ram.o endif |