ARM: 8984/1: Kconfig: set default ZBOOT_ROM_TEXT/BSS value to 0x0
ZBOOT_ROM_TEXT and ZBOOT_ROM_BSS are defined as 'hex' but had a default of "0". Kconfig will helpfully expand a text entry of 0 to 0x0 but because this is not the same as the default value it was treated as being explicitly set when running 'make savedefconfig' so most arm defconfigs have CONFIG_ZBOOT_ROM_TEXT=0x0 and CONFIG_ZBOOT_ROM_BSS=0x0. Change the default to 0x0 which will mean next time the defconfigs are re-generated the spurious config entries will be removed. Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
This commit is contained in:
parent
df2fbf5bfa
commit
39c3e30456
|
@ -1749,7 +1749,7 @@ config DEPRECATED_PARAM_STRUCT
|
||||||
# TEXT and BSS so we preserve their values in the config files.
|
# TEXT and BSS so we preserve their values in the config files.
|
||||||
config ZBOOT_ROM_TEXT
|
config ZBOOT_ROM_TEXT
|
||||||
hex "Compressed ROM boot loader base address"
|
hex "Compressed ROM boot loader base address"
|
||||||
default "0"
|
default 0x0
|
||||||
help
|
help
|
||||||
The physical address at which the ROM-able zImage is to be
|
The physical address at which the ROM-able zImage is to be
|
||||||
placed in the target. Platforms which normally make use of
|
placed in the target. Platforms which normally make use of
|
||||||
|
@ -1760,7 +1760,7 @@ config ZBOOT_ROM_TEXT
|
||||||
|
|
||||||
config ZBOOT_ROM_BSS
|
config ZBOOT_ROM_BSS
|
||||||
hex "Compressed ROM boot loader BSS address"
|
hex "Compressed ROM boot loader BSS address"
|
||||||
default "0"
|
default 0x0
|
||||||
help
|
help
|
||||||
The base address of an area of read/write memory in the target
|
The base address of an area of read/write memory in the target
|
||||||
for the ROM-able zImage which must be available while the
|
for the ROM-able zImage which must be available while the
|
||||||
|
|
Loading…
Reference in New Issue