diff options
| author | Simon Glass <[email protected]> | 2017-08-04 16:35:02 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2017-08-11 17:44:52 -0400 |
| commit | 1aa4e8d0dead107ea28e5b90a3af07b753b17960 (patch) | |
| tree | a408c58d4821f286dac40a2451dcdeea12db5469 | |
| parent | 2a242e3e8074ba929f8aa5e871e4ea2bd9d483c7 (diff) | |
Convert CONFIG_CMD_UUID to Kconfig
This converts the following to Kconfig:
CONFIG_CMD_UUID
Signed-off-by: Simon Glass <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
Reviewed-by: Philipp Tomsich <[email protected]>
| -rw-r--r-- | README | 1 | ||||
| -rw-r--r-- | cmd/Kconfig | 11 | ||||
| -rw-r--r-- | scripts/config_whitelist.txt | 1 |
3 files changed, 11 insertions, 2 deletions
@@ -826,7 +826,6 @@ The following options need to be configured: CONFIG_CMD_USB * USB support CONFIG_CMD_CDP * Cisco Discover Protocol support CONFIG_CMD_XIMG Load part of Multi Image - CONFIG_CMD_UUID * Generate random UUID or GUID string EXAMPLE: If you want all functions except of network support you can write: diff --git a/cmd/Kconfig b/cmd/Kconfig index 162153174f0..b80aff94b2e 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1122,6 +1122,17 @@ config CMD_TERMINAL is very simple with no special processing of characters. As with cu, you can press ~. (tilde followed by period) to exit. +config CMD_UUID + bool "uuid, guid - generation of unique IDs" + help + This enables two commands: + + uuid - generate random Universally Unique Identifier + guid - generate Globally Unique Identifier based on random UUID + + The two commands are very similar except for the endianness of the + output. + endmenu config CMD_BOOTSTAGE diff --git a/scripts/config_whitelist.txt b/scripts/config_whitelist.txt index 93501966c5f..8b02d2ea726 100644 --- a/scripts/config_whitelist.txt +++ b/scripts/config_whitelist.txt @@ -293,7 +293,6 @@ CONFIG_CM922T_XA10 CONFIG_CMDLINE_EDITING CONFIG_CMDLINE_PS_SUPPORT CONFIG_CMDLINE_TAG -CONFIG_CMD_UUID CONFIG_CMD_ZBOOT CONFIG_CMD_ZFS CONFIG_CM_INIT |
