From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthias Brugger Date: Mon, 20 Jan 2020 10:34:52 +0100 Subject: [PATCH v4 1/2] Kconfig: add btrfs to distro boot In-Reply-To: <20200117195905.26404-1-matthias.bgg@kernel.org> References: <20200117195905.26404-1-matthias.bgg@kernel.org> Message-ID: <9432ab11-eade-232f-f3e5-da7ad686426a@suse.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 17/01/2020 20:59, matthias.bgg at kernel.org wrote: > From: Matthias Brugger > > Some distributions use btrfs as the default file system. > Enable btrfs support by default when using distro boot for all > architectures but riscv, as it breaks compilation due to size problems. > > Signed-off-by: Matthias Brugger > Any comments on this? FYI the Travis CI outcome can be seen here: https://travis-ci.org/mbgg/u-boot/builds/638599305 Regards, Matthias > --- > > Changes in v4: > - do not build for MIPS either > > Changes in v3: > - use imply instead of select > > Changes in v2: > - disable default btrfs support riscv > > Kconfig | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/Kconfig b/Kconfig > index d9be0daf23..f96f785c55 100644 > --- a/Kconfig > +++ b/Kconfig > @@ -93,6 +93,7 @@ config DISTRO_DEFAULTS > select HUSH_PARSER > select SUPPORT_RAW_INITRD > select SYS_LONGHELP > + imply CMD_BTRFS if !RISCV && !MIPS > imply CMD_MII if NET > imply USB_STORAGE > imply USE_BOOTCOMMAND >