e21f425fe0
- Drop qemu-riscv64spl flavor - Use generic opensbi for sifiveunleashed - Rename sifivefu540 to sifiveunleashed to follow upstream - Update to 2021.07 - Patch queue updated from https://github.com/openSUSE/u-boot.git tumbleweed-2021.07 * Patches dropped: 0014-fs-btrfs-fix-the-false-alert-of-dec.patch 0015-arm64-dts-meson-odroidc2-readd-PHY-.patch OBS-URL: https://build.opensuse.org/request/show/908408 OBS-URL: https://build.opensuse.org/package/show/hardware:boot/u-boot?expand=0&rev=148
27 lines
814 B
Diff
27 lines
814 B
Diff
From 62be4dbf9b2de5d7d9dea38b3cf7d3dc824fe8ea Mon Sep 17 00:00:00 2001
|
|
From: Matthias Brugger <mbrugger@suse.com>
|
|
Date: Fri, 17 Jan 2020 20:59:02 +0100
|
|
Subject: [PATCH] Kconfig: add btrfs to distro boot
|
|
|
|
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 <mbrugger@suse.com>
|
|
---
|
|
Kconfig | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/Kconfig b/Kconfig
|
|
index f8c1a77bed..e4882370f8 100644
|
|
--- a/Kconfig
|
|
+++ b/Kconfig
|
|
@@ -167,6 +167,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
|