mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-19 13:41:31 +02:00
Qcom SoCs derived boards can come from various OEMs/ODMs and not just Qcom itself. So allow CONFIG_SYS_VENDOR to be set correctly corressponding to the actual board vendor. Suggested-by: Stephan Gerhold <stephan@gerhold.net> Reviewed-by: Caleb Connolly <caleb.connolly@linaro.org> Signed-off-by: Sumit Garg <sumit.garg@linaro.org> Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
43 lines
1.0 KiB
Plaintext
43 lines
1.0 KiB
Plaintext
if ARCH_SNAPDRAGON
|
|
|
|
config SYS_SOC
|
|
default "snapdragon"
|
|
|
|
config SYS_VENDOR
|
|
string "Snapdragon board vendor"
|
|
default "qualcomm"
|
|
help
|
|
Allows to specify vendor for the Snapdragon SoCs based boards.
|
|
Based on this option board/<CONFIG_SYS_VENDOR>/<CONFIG_SYS_BOARD>
|
|
will be used as the custom board directory.
|
|
|
|
config SYS_MALLOC_F_LEN
|
|
default 0x2000
|
|
|
|
config SPL_SYS_MALLOC_F
|
|
default y
|
|
|
|
config SPL_SYS_MALLOC_F_LEN
|
|
default 0x2000
|
|
|
|
config LNX_KRNL_IMG_TEXT_OFFSET_BASE
|
|
default 0x80000000
|
|
|
|
config SYS_BOARD
|
|
string "Snapdragon SoCs based board"
|
|
help
|
|
Allows to specify the Snapdragon SoCs based board name.
|
|
Based on this option board/<CONFIG_SYS_VENDOR>/<CONFIG_SYS_BOARD>
|
|
will be used as the custom board directory.
|
|
|
|
config SYS_CONFIG_NAME
|
|
string "Board configuration name"
|
|
default SYS_BOARD if SYS_BOARD != ""
|
|
default "qcom"
|
|
help
|
|
This option contains information about board configuration name.
|
|
Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
|
|
will be used for board configuration.
|
|
|
|
endif
|