diff options
author | Hannes Schmelzer <hannes.schmelzer@br-automation.com> | 2019-08-22 15:41:44 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-08-25 20:58:59 -0400 |
commit | 2c24a83b04e612065865ed93356837da8b0d6029 (patch) | |
tree | e29fd608fae26557bece76513d6bd743ce89798f /include/configs/mt7629.h | |
parent | abf9e5d0f2cd123951dfae0d5605b54394721b97 (diff) | |
download | u-boot-2c24a83b04e612065865ed93356837da8b0d6029.tar.gz |
moveconfig: prepare moving CONFIG_SYS_SPI_U_BOOT_OFFS to Kconfig step 3
Exact two boards are referencing CONFIG_SYS_SPI_U_BOOT_OFFS to another
define, we replace this manually with the value for having a clean run
of moveconfig.py afterwards.
Signed-off-by: Hannes Schmelzer <hannes.schmelzer@br-automation.com>
Diffstat (limited to 'include/configs/mt7629.h')
-rw-r--r-- | include/configs/mt7629.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/configs/mt7629.h b/include/configs/mt7629.h index 6e9b868aa4..fc69d61918 100644 --- a/include/configs/mt7629.h +++ b/include/configs/mt7629.h @@ -38,7 +38,9 @@ #define CONFIG_SPL_PAD_TO 0x10000 #define CONFIG_SPI_ADDR 0x30000000 -#define CONFIG_SYS_SPI_U_BOOT_OFFS CONFIG_SPL_PAD_TO +#ifdef CONFIG_SPL_SPI_LOAD +#define CONFIG_SYS_SPI_U_BOOT_OFFS 0x10000 +#endif #define CONFIG_SYS_UBOOT_BASE (CONFIG_SPI_ADDR + CONFIG_SPL_PAD_TO) /* SPL -> Uboot */ |