From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chris Packham Date: Sat, 13 Apr 2019 21:13:56 +1200 Subject: [U-Boot] [PATCH 1/4] cmd: ubifs: Remove select for non-existent option In-Reply-To: <20190413091359.29612-1-judge.packham@gmail.com> References: <20190413091359.29612-1-judge.packham@gmail.com> Message-ID: <20190413091359.29612-2-judge.packham@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de There is no 'config CRC32', remove the select that was attempting to use it. Reported-by: Robert P. J. Day Signed-off-by: Chris Packham --- cmd/Kconfig | 2 -- 1 file changed, 2 deletions(-) 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. -- 2.21.0