diff options
author | Jean-Jacques Hiblot <jjhiblot@ti.com> | 2018-01-04 15:23:28 +0100 |
---|---|---|
committer | Jaehoon Chung <jh80.chung@samsung.com> | 2018-01-12 18:11:23 +0900 |
commit | d0e443786cd9179ad3b8e3bbc70cc446af86f8f0 (patch) | |
tree | 9d89b51d2c9304b2842c5e1b7191409364f8374a /common | |
parent | dc80373299aec757f6dbd3bf170d91aa3f0dce7a (diff) | |
download | u-boot-d0e443786cd9179ad3b8e3bbc70cc446af86f8f0.tar.gz u-boot-d0e443786cd9179ad3b8e3bbc70cc446af86f8f0.tar.bz2 u-boot-d0e443786cd9179ad3b8e3bbc70cc446af86f8f0.zip |
common: do not compile common fastboot code when building the SPL
This is not required as fastboot can't be started from SPL.
Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/Makefile b/common/Makefile index 14166209fe..c7bde239c1 100644 --- a/common/Makefile +++ b/common/Makefile @@ -109,6 +109,7 @@ obj-$(CONFIG_IO_TRACE) += iotrace.o obj-y += memsize.o obj-y += stdio.o +ifndef CONFIG_SPL_BUILD # This option is not just y/n - it can have a numeric value ifdef CONFIG_FASTBOOT_FLASH obj-y += image-sparse.o @@ -119,6 +120,7 @@ ifdef CONFIG_FASTBOOT_FLASH_NAND_DEV obj-y += fb_nand.o endif endif +endif ifdef CONFIG_CMD_EEPROM_LAYOUT obj-y += eeprom/eeprom_field.o eeprom/eeprom_layout.o |