diff options
author | Hyok S. Choi <hyok.choi@samsung.com> | 2006-03-27 15:18:50 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-03-27 15:18:50 +0100 |
commit | c760fc1997e8156ebc4134c42c18f68137c689f9 (patch) | |
tree | d7ab9b7b93c8d6829a7d2b6d972b8405256d04d0 /arch/arm/Kconfig | |
parent | f8c07de6beac55c3273cbd679bfa67555ef14ef5 (diff) | |
download | op-kernel-dev-c760fc1997e8156ebc4134c42c18f68137c689f9.zip op-kernel-dev-c760fc1997e8156ebc4134c42c18f68137c689f9.tar.gz |
[ARM] nommu: fixups for the exception vectors
The high page vector (0xFFFF0000) does not supported in nommu mode.
This patch allows the vectors to be 0x00000000 or the begining of DRAM
in nommu mode.
Signed-off-by: Hyok S. Choi <hyok.choi@samsung.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r-- | arch/arm/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 32ba00b..b674614 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -72,6 +72,14 @@ config FIQ config ARCH_MTD_XIP bool +config VECTORS_BASE + hex + default 0xffff0000 if MMU + default DRAM_BASE if REMAP_VECTORS_TO_RAM + default 0x00000000 + help + The base address of exception vectors. + source "init/Kconfig" menu "System Type" |