mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
Now the types of CONFIG_SYS_{ARCH, CPU, SOC, VENDOR, BOARD, CONFIG_NAME} are specified in arch/Kconfig. We can delete the ones in arch and board Kconfig files. This commit can be easily reproduced by the following command: find . -name Kconfig -a ! -path ./arch/Kconfig | xargs sed -i -e ' /config[[:space:]]SYS_\(ARCH\|CPU\|SOC\|\VENDOR\|BOARD\|CONFIG_NAME\)/ { N s/\n[[:space:]]*string// } ' Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
--------------------------------------------------------------------------- Build target Flash address | BDI "go" command | Reset Vector --------------------------------------------------------------------------- Lite5200 0xFFF00000 | 0xFFF00100 | 0xFFF00100 Lite5200_LOWBOOT 0xFF000000 | 0xFF000100 | 0x00000100 Lite5200_LOWBOOT08 0xFF800000 | 0xFF800100 | 0x00000100 icecube_5200 0xFFF00000 | 0xFFF00100 | 0xFFF00100 icecube_5200_LOWBOOT 0xFF000000 | 0xFF000100 | 0x00000100 icecube_5200_LOWBOOT08 0xFF800000 | 0xFF800100 | 0x00000100 icecube_5200_DDR 0xFFF00000 | 0xFFF00100 | 0xFFF00100 icecube_5200_DDR_LOWBOOT 0xFF800000 | 0xFF800100 | 0x00000100 icecube_5200_DDR_LOWBOOT08 0xFF800000 | 0xFF800100 | 0x00000100 ---------------------------------------------------------------------------