aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevarsh Thakkar <devarsht@ti.com>2023-12-05 21:25:22 +0530
committerTom Rini <trini@konsulko.com>2024-01-29 14:49:17 -0500
commitb557e9f06e4082faf15df2cd40a2b1842a8888fe (patch)
tree0ad275dcf0d53eba46fc9e1c99a4c362358e8ca6
parentb30414f089d23942fe36a66a8de8c9c22fad91ba (diff)
downloadu-boot-b557e9f06e4082faf15df2cd40a2b1842a8888fe.zip
u-boot-b557e9f06e4082faf15df2cd40a2b1842a8888fe.tar.gz
u-boot-b557e9f06e4082faf15df2cd40a2b1842a8888fe.tar.bz2
doc: spl: Add info for missing Kconfigs
Add info regarding splash screen, video, bloblist and GPIO related Kconfigs which were missing in the documentation. Signed-off-by: Devarsh Thakkar <devarsht@ti.com> Reviewed-by: Simon Glass <sjg@chromium>
-rw-r--r--doc/develop/spl.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/develop/spl.rst b/doc/develop/spl.rst
index 76e87f0..814530d 100644
--- a/doc/develop/spl.rst
+++ b/doc/develop/spl.rst
@@ -65,6 +65,15 @@ CONFIG_SPL_NAND_LOAD (drivers/mtd/nand/raw/nand_spl_load.o)
CONFIG_SPL_SPI_LOAD (drivers/mtd/spi/spi_spl_load.o)
CONFIG_SPL_RAM_DEVICE (common/spl/spl.c)
CONFIG_SPL_WATCHDOG (drivers/watchdog/libwatchdog.o)
+CONFIG_SPL_SYSCON (drivers/core/syscon-uclass.o)
+CONFIG_SPL_GZIP (lib/gzip.o)
+CONFIG_SPL_VIDEO (drivers/video/video-uclass.o drivers/video/vidconsole-uclass.o)
+CONFIG_SPL_SPLASH_SCREEN (common/splash.o)
+CONFIG_SPL_SPLASH_SOURCE (common/splash_source.o)
+CONFIG_SPL_GPIO (drivers/gpio)
+CONFIG_SPL_DM_GPIO (drivers/gpio/gpio-uclass.o)
+CONFIG_SPL_BMP (drivers/video/bmp.o)
+CONFIG_SPL_BLOBLIST (common/bloblist.o)
Adding SPL-specific code
------------------------