kconfig: change RAM_SIZE to be in hex
We already had this kconfig defined as hex for arc. Make it readable and change the variable to hex to comply with what we had already. Change-Id: Ib8bc72f27d1b97ba2c886201ec29fb13aa4fa429 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
c5ad109c7b
commit
6ba5c09d23
2 changed files with 4 additions and 4 deletions
|
@ -28,7 +28,7 @@ source "kernel/Kconfig"
|
|||
menu "X86 Platform Configuration options"
|
||||
|
||||
config RAM_SIZE
|
||||
int "Amount of RAM given to the kernel (in kB)"
|
||||
hex "Amount of RAM given to the kernel (in kB)"
|
||||
help
|
||||
This option specifies the amount of RAM given to the kernel. It must
|
||||
not exceed the amount available on the target. When running an XIP
|
||||
|
@ -39,7 +39,7 @@ config RAM_SIZE
|
|||
The default value is specified by the platform.
|
||||
|
||||
config ROM_SIZE
|
||||
int "Amount of ROM given to the kernel (in kB)" if XIP
|
||||
hex "Amount of ROM given to the kernel (in kB)" if XIP
|
||||
help
|
||||
This option specifies the amount of ROM given to the kernel. It must
|
||||
not exceed the amount available on the target. It must also be large
|
||||
|
|
|
@ -28,10 +28,10 @@ config PHYS_LOAD_ADDR
|
|||
default 0x00100000
|
||||
|
||||
config RAM_SIZE
|
||||
default 32768
|
||||
default 0x8000
|
||||
|
||||
config ROM_SIZE
|
||||
default 1024 if XIP
|
||||
default 0x400 if XIP
|
||||
|
||||
config SYS_CLOCK_HW_CYCLES_PER_SEC
|
||||
default 25000000 if HPET_TIMER
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue