diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2015-01-06 22:14:15 +0800 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-01-13 07:25:03 -0800 |
commit | 8cb20ccc34cda9fdcbae962744bf8ecee90dd5d2 (patch) | |
tree | 076aa83b80d45d6cb0b16f9288056c1d6f445ad2 /arch/x86/Kconfig | |
parent | 3ba6a0f4f6a2381ad32930df6277930a3de577bc (diff) | |
download | u-boot-8cb20ccc34cda9fdcbae962744bf8ecee90dd5d2.tar.gz |
x86: Move CONFIG_X86_RESET_VECTOR and CONFIG_SYS_X86_START16 to Kconfig
Convert CONFIG_X86_RESET_VECTOR and CONFIG_SYS_X86_START16 to Kconfig
options so that we can remove them from board configuration file.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/Kconfig')
-rw-r--r-- | arch/x86/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index ffcb4cb665..ba0c1aace0 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -66,6 +66,15 @@ config SMM_TSEG config SMM_TSEG_SIZE hex +config X86_RESET_VECTOR + bool + default n + +config SYS_X86_START16 + hex + depends on X86_RESET_VECTOR + default 0xfffff800 + config BOARD_ROMSIZE_KB_512 bool config BOARD_ROMSIZE_KB_1024 |