From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter Robinson Date: Mon, 11 May 2015 13:52:43 +0100 Subject: [U-Boot] [PATCH 08/10] imx6: standardise filesystem and boot options to In-Reply-To: <20150511122559.GK5267@bill-the-cat> References: <1431343409-4707-1-git-send-email-pbrobinson@gmail.com> <1431343409-4707-9-git-send-email-pbrobinson@gmail.com> <20150511122559.GK5267@bill-the-cat> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Mon, May 11, 2015 at 1:25 PM, Tom Rini wrote: > On Mon, May 11, 2015 at 12:23:27PM +0100, Peter Robinson wrote: > >> Move all standard filesystem, partition and fdt options to mx6_common. >> >> Signed-off-by: Peter Robinson > [snip] >> @@ -274,7 +267,6 @@ >> #define CONFIG_MTD_PARTITIONS >> #define CONFIG_MTD_DEVICE >> #define CONFIG_RBTREE >> -#define CONFIG_LZO >> #define CONFIG_CMD_UBI >> #define CONFIG_CMD_UBIFS > [snip] >> diff --git a/include/configs/mx6_common.h b/include/configs/mx6_common.h >> index 08ae39c..862f668 100644 >> --- a/include/configs/mx6_common.h >> +++ b/include/configs/mx6_common.h >> @@ -58,6 +58,18 @@ >> #define CONFIG_CONS_INDEX 1 >> #define CONFIG_BAUDRATE 115200 >> >> +/* Filesystems and image support */ >> +#define CONFIG_OF_LIBFDT >> +#define CONFIG_CMD_BOOTZ >> +#define CONFIG_LZO > > What is the non-UBI use case for LZO? It's not for LZO-compressed > kernels.. Thanks! Ah, my bad, I thought it was, will review and send a follow up patch to clean it up. Peter