forked from pool/u-boot
Fix boo#1216036. Tested on RPi4. Boot from USB and uSD fine. For details see: https://lore.kernel.org/u-boot/20231023070216.394709-1-sjg@chromium.org/#t * Patches added: 0018-Revert-bootstd-Scan-all-bootdevs-in.patch 0019-bootstd-Expand-boot-ordering-test-t.patch 0020-bootstd-Correct-logic-for-single-uc.patch 0021-bootstd-Scan-all-bootdevs-in-a-boot.patch OBS-URL: https://build.opensuse.org/request/show/1120007 OBS-URL: https://build.opensuse.org/package/show/hardware:boot/u-boot?expand=0&rev=201
27 lines
927 B
Diff
27 lines
927 B
Diff
From e854dbdbb82d0a422440ecb94ab0a545a7bc7a0b Mon Sep 17 00:00:00 2001
|
|
From: Guillaume Gardet <guillaume.gardet@arm.com>
|
|
Date: Wed, 5 Apr 2023 14:25:29 +0200
|
|
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>
|
|
---
|
|
boot/Kconfig | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/boot/Kconfig b/boot/Kconfig
|
|
index 86c2787dc53..fc01c8932f1 100644
|
|
--- a/boot/Kconfig
|
|
+++ b/boot/Kconfig
|
|
@@ -885,6 +885,7 @@ config DISTRO_DEFAULTS
|
|
select CMD_SYSBOOT
|
|
select HUSH_PARSER
|
|
select SYS_LONGHELP
|
|
+ imply CMD_BTRFS if !RISCV && !MIPS
|
|
help
|
|
Select this to enable various options and commands which are suitable
|
|
for building u-boot for booting general purpose Linux distributions.
|