diff options
| author | Simon Glass <[email protected]> | 2020-09-12 11:13:35 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-10-10 16:49:58 -0400 |
| commit | 26637e2e4c7235e4fe01b78a9646471c65e28aea (patch) | |
| tree | f0236c1911bf52fac9e493f1c92da3de94723500 /lib | |
| parent | 52d3df7fefe30b05677db9055e68c666a071d89a (diff) | |
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 <[email protected]>
Reviewed-by: Stefan Roese <[email protected]>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index 8efb154f734..37aae73a266 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 |
