diff options
author | Tom Rini <trini@ti.com> | 2014-05-09 18:48:26 -0400 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-05-09 18:48:26 -0400 |
commit | f4617ef86dbbc2b844d530564694b927099bf0a9 (patch) | |
tree | 33dd41efabe14ad2ce99559f556fa6f22841f8a5 /arch/sandbox/config.mk | |
parent | bcb879c0e37db1cf527ff408df93918f155012ea (diff) | |
parent | 097c5de5f4a64d3b121dc1dbe020f7f2545dabdb (diff) | |
download | u-boot-imx-f4617ef86dbbc2b844d530564694b927099bf0a9.zip u-boot-imx-f4617ef86dbbc2b844d530564694b927099bf0a9.tar.gz u-boot-imx-f4617ef86dbbc2b844d530564694b927099bf0a9.tar.bz2 |
Merge branch 'tom' of git://git.denx.de/u-boot-x86
Diffstat (limited to 'arch/sandbox/config.mk')
-rw-r--r-- | arch/sandbox/config.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/sandbox/config.mk b/arch/sandbox/config.mk index e094ae2..c3f889f 100644 --- a/arch/sandbox/config.mk +++ b/arch/sandbox/config.mk @@ -18,3 +18,9 @@ cmd_u-boot__ = $(CC) -o $@ -T u-boot.lds \ $(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map CONFIG_ARCH_DEVICE_TREE := sandbox + +# Define this to avoid linking with SDL, which requires SDL libraries +# This can solve 'sdl-config: Command not found' errors +ifneq ($(NO_SDL),) +PLATFORM_CPPFLAGS += -DSANDBOX_NO_SDL +endif |