]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
mach-snapdragon: Allow other board vendors apart from Qcom
authorSumit Garg <sumit.garg@linaro.org>
Thu, 11 Apr 2024 12:37:26 +0000 (18:07 +0530)
committerCaleb Connolly <caleb.connolly@linaro.org>
Tue, 23 Apr 2024 11:29:12 +0000 (13:29 +0200)
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>
arch/arm/mach-snapdragon/Kconfig

index 96e44e2c54919d24a0140998e058af339765a9df..536960b83c3bb253ab6bacf5e4bf7f5f065193ef 100644 (file)
@@ -4,7 +4,12 @@ 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
@@ -19,12 +24,11 @@ config LNX_KRNL_IMG_TEXT_OFFSET_BASE
        default 0x80000000
 
 config SYS_BOARD
-       string "Qualcomm custom board"
+       string "Snapdragon SoCs based board"
        help
-         The Dragonboard 410c and 820c have additional board init
-         code that isn't shared with other Qualcomm boards.
-         Based on this option board/qualcomm/<CONFIG_SYS_BOARD> will
-         be used.
+         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"