diff options
author | Tom Rini | 2022-06-10 22:59:38 -0400 |
---|---|---|
committer | Tom Rini | 2022-06-28 17:11:48 -0400 |
commit | 910feb50d40acdd38b3709050fbe6b650e8c4b9d (patch) | |
tree | a5c3ad3ffb6761477a9f2e8f9811dffc87c7a09d /include/configs/taurus.h | |
parent | de47ff536363289f92f85ed1e4901724d238432d (diff) |
Globally remove most CONFIG_SPL_BUILD tests from config headers
With the exception of how PowerPC handles SPL and TPL (which has its own
issues), we cannot safely hide options under CONFIG_SPL_BUILD. Largely
remove the places that have this test today.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/configs/taurus.h')
-rw-r--r-- | include/configs/taurus.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/configs/taurus.h b/include/configs/taurus.h index b9285e8caba..798d72d8e26 100644 --- a/include/configs/taurus.h +++ b/include/configs/taurus.h @@ -84,13 +84,8 @@ /* SPI EEPROM */ #define TAURUS_SPI_MASK (1 << 4) -#if defined(CONFIG_SPL_BUILD) -/* SPL related */ -#endif - /* bootstrap in spi flash , u-boot + env + linux in nandflash */ -#ifndef CONFIG_SPL_BUILD #if defined(CONFIG_BOARD_AXM) #define CONFIG_EXTRA_ENV_SETTINGS \ "addip=setenv bootargs ${bootargs} ip=${ipaddr}:${serverip}:" \ @@ -139,7 +134,6 @@ "stdout=serial\0" \ "upgrade_available=0\0" #endif -#endif /* #ifndef CONFIG_SPL_BUILD */ /* Defines for SPL */ |