From 83f7078b688528f1f5c117e404c056e048970012 Mon Sep 17 00:00:00 2001 From: Philippe Reynes Date: Mon, 23 Mar 2020 19:20:47 +0100 Subject: cmd: ubi: add a command to rename volume This commit adds the command ubi rename to rename an ubi volume. The format of the command is: ubi rename . To enable this command, the option CMD_UBI_RENAME must be selected. Signed-off-by: Philippe Reynes Reviewed-by: Simon Glass --- cmd/Kconfig | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'cmd/Kconfig') diff --git a/cmd/Kconfig b/cmd/Kconfig index faa133da65..1c9634df3b 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -2173,6 +2173,14 @@ config CMD_UBI It is also strongly encouraged to also enable CONFIG_MTD to get full partition support. +config CMD_UBI_RENAME + bool "Enable rename" + depends on CMD_UBI + default n + help + Enable a "ubi" command to rename ubi volume: + ubi rename + config CMD_UBIFS tristate "Enable UBIFS - Unsorted block images filesystem commands" depends on CMD_UBI -- cgit