27 lines
912 B
Diff
27 lines
912 B
Diff
From 39d0b572ef1474a915c4b25da9fe51c51a06bda4 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 940389d4882..be7735413e8 100644
|
|
--- a/boot/Kconfig
|
|
+++ b/boot/Kconfig
|
|
@@ -902,6 +902,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
|