summaryrefslogtreecommitdiff
path: root/ANDROID_3.4.5/arch/arm/Kconfig-nommu
diff options
context:
space:
mode:
authorSrikant Patnaik2015-01-11 12:28:04 +0530
committerSrikant Patnaik2015-01-11 12:28:04 +0530
commit871480933a1c28f8a9fed4c4d34d06c439a7a422 (patch)
tree8718f573808810c2a1e8cb8fb6ac469093ca2784 /ANDROID_3.4.5/arch/arm/Kconfig-nommu
parent9d40ac5867b9aefe0722bc1f110b965ff294d30d (diff)
downloadFOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.tar.gz
FOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.tar.bz2
FOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.zip
Moved, renamed, and deleted files
The original directory structure was scattered and unorganized. Changes are basically to make it look like kernel structure.
Diffstat (limited to 'ANDROID_3.4.5/arch/arm/Kconfig-nommu')
-rw-r--r--ANDROID_3.4.5/arch/arm/Kconfig-nommu52
1 files changed, 0 insertions, 52 deletions
diff --git a/ANDROID_3.4.5/arch/arm/Kconfig-nommu b/ANDROID_3.4.5/arch/arm/Kconfig-nommu
deleted file mode 100644
index 2cef8e13..00000000
--- a/ANDROID_3.4.5/arch/arm/Kconfig-nommu
+++ /dev/null
@@ -1,52 +0,0 @@
-#
-# Kconfig for uClinux(non-paged MM) depend configurations
-# Hyok S. Choi <hyok.choi@samsung.com>
-#
-
-config SET_MEM_PARAM
- bool "Set flash/sdram size and base addr"
- help
- Say Y to manually set the base addresses and sizes.
- otherwise, the default values are assigned.
-
-config DRAM_BASE
- hex '(S)DRAM Base Address' if SET_MEM_PARAM
- default 0x00800000
-
-config DRAM_SIZE
- hex '(S)DRAM SIZE' if SET_MEM_PARAM
- default 0x00800000
-
-config FLASH_MEM_BASE
- hex 'FLASH Base Address' if SET_MEM_PARAM
- default 0x00400000
-
-config FLASH_SIZE
- hex 'FLASH Size' if SET_MEM_PARAM
- default 0x00400000
-
-config PROCESSOR_ID
- hex 'Hard wire the processor ID'
- default 0x00007700
- depends on !CPU_CP15
- help
- If processor has no CP15 register, this processor ID is
- used instead of the auto-probing which utilizes the register.
-
-config REMAP_VECTORS_TO_RAM
- bool 'Install vectors to the beginning of RAM' if DRAM_BASE
- depends on DRAM_BASE
- help
- The kernel needs to change the hardware exception vectors.
- In nommu mode, the hardware exception vectors are normally
- placed at address 0x00000000. However, this region may be
- occupied by read-only memory depending on H/W design.
-
- If the region contains read-write memory, say 'n' here.
-
- If your CPU provides a remap facility which allows the exception
- vectors to be mapped to writable memory, say 'n' here.
-
- Otherwise, say 'y' here. In this case, the kernel will require
- external support to redirect the hardware exception vectors to
- the writable versions located at DRAM_BASE.