mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
35 lines
1.2 KiB
Diff
35 lines
1.2 KiB
Diff
|
From d8636c9831fe1836ab2f929a3c0719f1a6ee1851 Mon Sep 17 00:00:00 2001
|
||
|
From: Andre Przywara <andre.przywara@arm.com>
|
||
|
Date: Wed, 14 Mar 2018 01:57:05 +0000
|
||
|
Subject: [PATCH 1/3] sunxi: disable direct MMC environment
|
||
|
|
||
|
Since the dawn of time for the Allwinner support in mainline U-Boot
|
||
|
we store the environment to the SD card and write directly at
|
||
|
544KB from the beginning of the device. This leads to problems when
|
||
|
the U-Boot proper image grows beyond 504KB and eventually overlaps.
|
||
|
With one release of having the environment preferably in a FAT
|
||
|
partition, let's now turn off the MMC variant fallback, so we get back
|
||
|
all the space we need to implement features.
|
||
|
|
||
|
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
|
||
|
Acked-by: Maxime Ripard <maxime.ripard@bootlin.com>
|
||
|
---
|
||
|
env/Kconfig | 1 -
|
||
|
1 file changed, 1 deletion(-)
|
||
|
|
||
|
diff --git a/env/Kconfig b/env/Kconfig
|
||
|
index a3c6298273..0c1e928f13 100644
|
||
|
--- a/env/Kconfig
|
||
|
+++ b/env/Kconfig
|
||
|
@@ -152,7 +152,6 @@ config ENV_IS_IN_MMC
|
||
|
bool "Environment in an MMC device"
|
||
|
depends on !CHAIN_OF_TRUST
|
||
|
depends on MMC
|
||
|
- default y if ARCH_SUNXI
|
||
|
default y if ARCH_EXYNOS4
|
||
|
default y if MX6SX || MX7D
|
||
|
default y if TEGRA30 || TEGRA124
|
||
|
--
|
||
|
2.16.3
|
||
|
|