diff mbox series

[v5,23/30] lib: uuid: move CONFIG_RANDOM_UUID

Message ID 20231026183138.636948-23-trini@konsulko.com
State Accepted
Commit a4dc3d569933e93e348f40dad802e2bed35f4de9
Headers show
Series None | expand

Commit Message

Tom Rini Oct. 26, 2023, 6:31 p.m. UTC
From: AKASHI Takahiro <takahiro.akashi@linaro.org>

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>
---
Changes in v5:
- Take AKASHI Takahiro's RFC and add my RB tag
---
 cmd/Kconfig | 7 -------
 lib/Kconfig | 7 +++++++
 2 files changed, 7 insertions(+), 7 deletions(-)
diff mbox series

Patch

diff --git a/cmd/Kconfig b/cmd/Kconfig
index 0eb739203ade..dcf1e54c5ddc 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -1132,13 +1132,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 f6ca559897e7..b6d580c30615 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