forked from pool/u-boot
Guillaume GARDET
c8dcbf9278
- Update to 2024.04: * Full changelog available at: https://source.denx.de/u-boot/u-boot/-/compare/v2024.01...v2024.04 - Patch queue updated from https://github.com/openSUSE/u-boot.git tumbleweed-2024.04 * Patches dropped: 0017-rpi5-add-initial-memory-map-for-bcm.patch 0018-rpi5-Use-devicetree-as-alternative-.patch 0019-rpi5-Use-devicetree-to-retrieve-boa.patch 0020-bcm2835-Dynamically-calculate-bytes.patch 0021-mmc-bcmstb-Add-support-for-bcm2712-.patch 0022-configs-rpi_arm64-enable-SDHCI-BCMS.patch 0023-configs-rpi_arm64-build-position-in.patch OBS-URL: https://build.opensuse.org/request/show/1165560 OBS-URL: https://build.opensuse.org/package/show/hardware:boot/u-boot?expand=0&rev=208
27 lines
910 B
Diff
27 lines
910 B
Diff
From 699f9b75896b0208c22aa6315eb75d5f2acf68d1 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 3d7aabd27d..701e60922a 100644
|
|
--- a/boot/Kconfig
|
|
+++ b/boot/Kconfig
|
|
@@ -863,6 +863,7 @@ config DISTRO_DEFAULTS
|
|
select CMD_SYSBOOT
|
|
select HUSH_PARSER
|
|
select SYS_LONGHELP
|
|
+ imply CMD_BTRFS if !RISCV && !MIPS
|
|
help
|
|
Note: These scripts have been replaced by Standard Boot. Do not use
|
|
them on new boards. See 'Migrating from distro_boot' at
|