f99a5ed47d
Add support for Jetson Nano. (jsc#SLE-9387) Enable btrfs by default. (jsc#SLE-10302) Add network support for RPi4 (jsc#SLE-7276) * Patches added: 0010-ARM-tegra-Add-NVIDIA-Jetson-Nano-De.patch 0011-Kconfig-add-btrfs-to-distro-boot.patch 0012-configs-Re-sync-with-CONFIG_DISTRO_.patch 0013-net-Add-support-for-Broadcom-GENETv.patch 0014-rpi4-Update-memory-map-to-accommoda.patch 0015-rpi4-Enable-GENET-Ethernet-controll.patch OBS-URL: https://build.opensuse.org/package/show/hardware:boot/u-boot?expand=0&rev=77
27 lines
812 B
Diff
27 lines
812 B
Diff
From 7a367c6bdc04cf194160dad3eb0af1af579690b9 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 92fc4fc135..b61ebf22f6 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
|