aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAKASHI Takahiro <takahiro.akashi@linaro.org>2023-10-26 14:31:31 -0400
committerTom Rini <trini@konsulko.com>2023-11-07 14:49:10 -0500
commita4dc3d569933e93e348f40dad802e2bed35f4de9 (patch)
treef1e95de9981dd42b9a8d20e98e4032ae1f687de7
parent3165565e5b1945d898b1a81da5171f9858f22642 (diff)
downloadu-boot-a4dc3d569933e93e348f40dad802e2bed35f4de9.zip
u-boot-a4dc3d569933e93e348f40dad802e2bed35f4de9.tar.gz
u-boot-a4dc3d569933e93e348f40dad802e2bed35f4de9.tar.bz2
lib: uuid: move CONFIG_RANDOM_UUID
This option is independent from any commands and should be managed under lib. For instance, drivers/block/rkmtd.c is a user. It would be better to remove this configuration. Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org> Reviewed-by: Tom Rini <trini@konsulko.com>
-rw-r--r--cmd/Kconfig7
-rw-r--r--lib/Kconfig7
2 files changed, 7 insertions, 7 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig
index 6cf7159..629a90a 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -1131,13 +1131,6 @@ config CMD_GPT
Enable the 'gpt' command to ready and write GPT style partition
tables.
-config RANDOM_UUID
- bool "GPT Random UUID generation"
- select LIB_UUID
- help
- Enable the generation of partitions with random UUIDs if none
- are provided.
-
config CMD_GPT_RENAME
bool "GPT partition renaming commands"
depends on CMD_GPT
diff --git a/lib/Kconfig b/lib/Kconfig
index 1964951..0c3afae 100644
--- a/lib/Kconfig
+++ b/lib/Kconfig
@@ -74,6 +74,13 @@ config HAVE_PRIVATE_LIBGCC
config LIB_UUID
bool
+config RANDOM_UUID
+ bool "GPT Random UUID generation"
+ select LIB_UUID
+ help
+ Enable the generation of partitions with random UUIDs if none
+ are provided.
+
config SPL_LIB_UUID
depends on SPL
bool