diff mbox series

[U-Boot,1/4] cmd: ubifs: Remove select for non-existent option

Message ID 20190413091359.29612-2-judge.packham@gmail.com
State Accepted
Commit 2b841dba5ccea242fce12d5a3142042138c5a23a
Delegated to: Tom Rini
Headers show
Series Remove select CRC32 and CONFIG_CRC32 | expand

Commit Message

Chris Packham April 13, 2019, 9:13 a.m. UTC
There is no 'config CRC32', remove the select that was attempting to use
it.

Reported-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Chris Packham <judge.packham@gmail.com>
---

 cmd/Kconfig | 2 --
 1 file changed, 2 deletions(-)

Comments

Heiko Schocher April 15, 2019, 4:03 a.m. UTC | #1
Hello Chris,

Am 13.04.2019 um 11:13 schrieb Chris Packham:
> There is no 'config CRC32', remove the select that was attempting to use
> it.
> 
> Reported-by: Robert P. J. Day <rpjday@crashcourse.ca>
> Signed-off-by: Chris Packham <judge.packham@gmail.com>
> ---
> 
>   cmd/Kconfig | 2 --
>   1 file changed, 2 deletions(-)

Reviewed-by: Heiko Schocher <hs@denx.de>

bye,
Heiko
Tom Rini May 10, 2019, 3:10 p.m. UTC | #2
On Sat, Apr 13, 2019 at 09:13:56PM +1200, Chris Packham wrote:

> There is no 'config CRC32', remove the select that was attempting to use
> it.
> 
> Reported-by: Robert P. J. Day <rpjday@crashcourse.ca>
> Signed-off-by: Chris Packham <judge.packham@gmail.com>
> Reviewed-by: Heiko Schocher <hs@denx.de>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/cmd/Kconfig b/cmd/Kconfig
index 2bdbfcb3d091..71a7f1cc83c5 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -1917,7 +1917,6 @@  endmenu
 
 config CMD_UBI
 	tristate "Enable UBI - Unsorted block images commands"
-	select CRC32
 	select MTD_UBI
 	help
 	  UBI is a software layer above MTD layer which admits use of LVM-like
@@ -1933,7 +1932,6 @@  config CMD_UBIFS
 	tristate "Enable UBIFS - Unsorted block images filesystem commands"
 	depends on CMD_UBI
 	default y if CMD_UBI
-	select CRC32
 	select LZO
 	help
 	  UBIFS is a file system for flash devices which works on top of UBI.