mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-28 07:03:31 +08:00
x86: Kconfig: Remove deprecated CONFIG_SYS_EXTRA_OPTIONS
Currently all x86 boards still use CONFIG_SYS_EXTRA_OPTIONS to define the text base address. Since it is deprecated, just remove it and use CONFIG_SYS_TEXT_BASE directly. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
3e4522279d
commit
99556d7deb
2
Kconfig
2
Kconfig
@ -178,7 +178,7 @@ config SYS_EXTRA_OPTIONS
|
||||
new boards should not use this option.
|
||||
|
||||
config SYS_TEXT_BASE
|
||||
depends on SPARC || ARC
|
||||
depends on SPARC || ARC || X86
|
||||
hex "Text Base"
|
||||
help
|
||||
TODO: Move CONFIG_SYS_TEXT_BASE for all the architecture
|
||||
|
@ -9,6 +9,9 @@ config SYS_VENDOR
|
||||
config SYS_SOC
|
||||
default "coreboot"
|
||||
|
||||
config SYS_TEXT_BASE
|
||||
default 0x01110000
|
||||
|
||||
comment "coreboot-specific options"
|
||||
|
||||
config SYS_CONFIG_NAME
|
||||
|
@ -12,6 +12,9 @@ config SYS_SOC
|
||||
config SYS_CONFIG_NAME
|
||||
default "chromebook_link"
|
||||
|
||||
config SYS_TEXT_BASE
|
||||
default 0xfff00000
|
||||
|
||||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select X86_RESET_VECTOR
|
||||
|
@ -12,6 +12,9 @@ config SYS_SOC
|
||||
config SYS_CONFIG_NAME
|
||||
default "chromebox_panther"
|
||||
|
||||
config SYS_TEXT_BASE
|
||||
default 0xfff00000
|
||||
|
||||
# Panther actually uses haswell, not ivybridge, so this is just a placeholder
|
||||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
|
@ -12,6 +12,9 @@ config SYS_SOC
|
||||
config SYS_CONFIG_NAME
|
||||
default "crownbay"
|
||||
|
||||
config SYS_TEXT_BASE
|
||||
default 0xfff00000
|
||||
|
||||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select X86_RESET_VECTOR
|
||||
|
@ -12,6 +12,9 @@ config SYS_SOC
|
||||
config SYS_CONFIG_NAME
|
||||
default "galileo"
|
||||
|
||||
config SYS_TEXT_BASE
|
||||
default 0xfff10000
|
||||
|
||||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select X86_RESET_VECTOR
|
||||
|
@ -12,6 +12,9 @@ config SYS_SOC
|
||||
config SYS_CONFIG_NAME
|
||||
default "minnowmax"
|
||||
|
||||
config SYS_TEXT_BASE
|
||||
default 0xfff00000
|
||||
|
||||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select X86_RESET_VECTOR
|
||||
|
@ -1,4 +1,3 @@
|
||||
CONFIG_SYS_EXTRA_OPTIONS="SYS_TEXT_BASE=0xfff00000"
|
||||
CONFIG_X86=y
|
||||
CONFIG_VENDOR_GOOGLE=y
|
||||
CONFIG_TARGET_CHROMEBOOK_LINK=y
|
||||
|
@ -1,4 +1,3 @@
|
||||
CONFIG_SYS_EXTRA_OPTIONS="SYS_TEXT_BASE=0xfff00000"
|
||||
CONFIG_X86=y
|
||||
CONFIG_VENDOR_GOOGLE=y
|
||||
CONFIG_TARGET_CHROMEBOX_PANTHER=y
|
||||
|
@ -1,4 +1,3 @@
|
||||
CONFIG_SYS_EXTRA_OPTIONS="SYS_TEXT_BASE=0x01110000"
|
||||
CONFIG_X86=y
|
||||
CONFIG_VENDOR_COREBOOT=y
|
||||
CONFIG_TARGET_COREBOOT=y
|
||||
|
@ -1,4 +1,3 @@
|
||||
CONFIG_SYS_EXTRA_OPTIONS="SYS_TEXT_BASE=0xfff00000"
|
||||
CONFIG_X86=y
|
||||
CONFIG_VENDOR_INTEL=y
|
||||
CONFIG_TARGET_CROWNBAY=y
|
||||
|
@ -1,4 +1,3 @@
|
||||
CONFIG_SYS_EXTRA_OPTIONS="SYS_TEXT_BASE=0xfff10000"
|
||||
CONFIG_X86=y
|
||||
CONFIG_VENDOR_INTEL=y
|
||||
CONFIG_TARGET_GALILEO=y
|
||||
|
@ -1,4 +1,3 @@
|
||||
CONFIG_SYS_EXTRA_OPTIONS="SYS_TEXT_BASE=0xfff00000"
|
||||
CONFIG_X86=y
|
||||
CONFIG_VENDOR_INTEL=y
|
||||
CONFIG_TARGET_MINNOWMAX=y
|
||||
|
Loading…
Reference in New Issue
Block a user