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>
master
Bin Meng 9 years ago committed by Simon Glass
parent 3e4522279d
commit 99556d7deb
  1. 2
      Kconfig
  2. 3
      board/coreboot/coreboot/Kconfig
  3. 3
      board/google/chromebook_link/Kconfig
  4. 3
      board/google/chromebox_panther/Kconfig
  5. 3
      board/intel/crownbay/Kconfig
  6. 3
      board/intel/galileo/Kconfig
  7. 3
      board/intel/minnowmax/Kconfig
  8. 1
      configs/chromebook_link_defconfig
  9. 1
      configs/chromebox_panther_defconfig
  10. 1
      configs/coreboot-x86_defconfig
  11. 1
      configs/crownbay_defconfig
  12. 1
      configs/galileo_defconfig
  13. 1
      configs/minnowmax_defconfig

@ -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…
Cancel
Save