diff options
author | Icenowy Zheng <icenowy@aosc.io> | 2022-01-29 10:23:09 -0500 |
---|---|---|
committer | Andre Przywara <andre.przywara@arm.com> | 2022-02-04 00:09:57 +0000 |
commit | b6ffd58e45043b822844345d4ca9b2cb1e2917b7 (patch) | |
tree | 72eb9237b3355d3b932104ca59dbcde9074cad44 /boot | |
parent | ce2b6c448193e64faaaa3237ff64e9c6961a6653 (diff) | |
download | u-boot-b6ffd58e45043b822844345d4ca9b2cb1e2917b7.tar.gz |
configs: sunxi: Add support for Lichee Pi Nano
The Lichee Pi Nano is a board based on the F1C100s.
Add defconfigs for it.
Signed-off-by: Icenowy Zheng <icenowy@aosc.io>
Signed-off-by: Jesse Taube <Mr.Bossman075@gmail.com>
Reviewed-by: Andre Przywara <andre.przywara@arm.com>
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Diffstat (limited to 'boot')
-rw-r--r-- | boot/Kconfig | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/boot/Kconfig b/boot/Kconfig index c8d5906cd3..b83a4e8400 100644 --- a/boot/Kconfig +++ b/boot/Kconfig @@ -362,9 +362,10 @@ config SYS_TEXT_BASE depends on HAVE_SYS_TEXT_BASE default 0x0 if POSITION_INDEPENDENT default 0x80800000 if ARCH_OMAP2PLUS || ARCH_K3 - default 0x4a000000 if ARCH_SUNXI && !MACH_SUN9I && !MACH_SUN8I_V3S - default 0x2a000000 if ARCH_SUNXI && MACH_SUN9I - default 0x42e00000 if ARCH_SUNXI && MACH_SUN8I_V3S + default 0x81700000 if MACH_SUNIV + default 0x2a000000 if MACH_SUN9I + default 0x42e00000 if MACH_SUN8I_V3S + default 0x4a000000 if ARCH_SUNXI hex "Text Base" help The address in memory that U-Boot will be running from, initially. |