From: Simon Glass Date: Sat, 12 Sep 2020 17:13:35 +0000 (-0600) Subject: lib: Allow hexdump to be used in SPL X-Git-Tag: baikal/mips/sdk5.9~175^2~7 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=fe5a1f8fe72400af1cd7007a0e89d5eab28b3b0c;p=uboot.git lib: Allow hexdump to be used in SPL It is sometimes useful to output hex dumps in SPL. Add a config option to allow this. Signed-off-by: Simon Glass Reviewed-by: Stefan Roese --- diff --git a/lib/Kconfig b/lib/Kconfig index 8efb154f73..37aae73a26 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -542,6 +542,14 @@ config HEXDUMP help This enables functions for printing dumps of binary data. +config SPL_HEXDUMP + bool "Enable hexdump in SPL" + depends on HEXDUMP + default y + help + This enables functions for printing dumps of binary data in + SPL. + config OF_LIBFDT bool "Enable the FDT library" default y if OF_CONTROL