diff options
author | Simon Glass <sjg@chromium.org> | 2016-07-04 11:57:51 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-07-14 20:40:24 -0600 |
commit | e961a66df91ea4cbf9b6978995f1ba6c8d67aa33 (patch) | |
tree | 834ef399e8b7ca2d9cd1be9d7ee7214937ff2cd1 /arch/sandbox/cpu/Makefile | |
parent | d0d0746e0c7c9eeddc82106cf7d4c596eb45f6c2 (diff) |
sandbox: Add basic SPL implementation
Add an sandbox implementation for the generic SPL framework. This supports
locating and running U-Boot proper.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/sandbox/cpu/Makefile')
-rw-r--r-- | arch/sandbox/cpu/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sandbox/cpu/Makefile b/arch/sandbox/cpu/Makefile index 1b42fee141..db4363358a 100644 --- a/arch/sandbox/cpu/Makefile +++ b/arch/sandbox/cpu/Makefile @@ -8,6 +8,7 @@ # obj-y := cpu.o os.o start.o state.o +obj-$(CONFIG_SPL_BUILD) += spl.o obj-$(CONFIG_ETH_SANDBOX_RAW) += eth-raw-os.o obj-$(CONFIG_SANDBOX_SDL) += sdl.o |