Skip to content

Commit 39c3e30

Browse files
cpackham-atlnzRussell King
authored andcommitted
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 <[email protected]> Signed-off-by: Russell King <[email protected]>
1 parent df2fbf5 commit 39c3e30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/arm/Kconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1749,7 +1749,7 @@ config DEPRECATED_PARAM_STRUCT
17491749
# TEXT and BSS so we preserve their values in the config files.
17501750
config ZBOOT_ROM_TEXT
17511751
hex "Compressed ROM boot loader base address"
1752-
default "0"
1752+
default 0x0
17531753
help
17541754
The physical address at which the ROM-able zImage is to be
17551755
placed in the target. Platforms which normally make use of
@@ -1760,7 +1760,7 @@ config ZBOOT_ROM_TEXT
17601760

17611761
config ZBOOT_ROM_BSS
17621762
hex "Compressed ROM boot loader BSS address"
1763-
default "0"
1763+
default 0x0
17641764
help
17651765
The base address of an area of read/write memory in the target
17661766
for the ROM-able zImage which must be available while the

0 commit comments

Comments
 (0)