blob: 8bf99c7a1024abbfce61d5fb1a782ff5dbea0cd2 [file] [log] [blame]
Brad Bishop5b6780e2019-09-10 09:08:47 -04001From 5cc81108739c8b5eb5679f726ae86e677e9dee65 Mon Sep 17 00:00:00 2001
2From: Brad Bishop <bradleyb@fuzziesquirrel.com>
3Date: Thu, 5 Sep 2019 20:39:57 -0400
4Subject: [PATCH] arm: evb-ast2600: put environment back at 512KiB
5
6Prior to 473f430b90 the environment was at 512KiB, and compatible with
7OpenBMC. Restore OpenBMC compatibility by moving the environment back
8to 512KiB.
9
10Upstream-Status: Pending
11Upstream-Status: https://github.com/AspeedTech-BMC/u-boot/pull/1
12Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
13---
14 include/configs/evb_ast2600.h | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/include/configs/evb_ast2600.h b/include/configs/evb_ast2600.h
18index b4de42a05a..3a12f2f0d4 100644
19--- a/include/configs/evb_ast2600.h
20+++ b/include/configs/evb_ast2600.h
21@@ -18,7 +18,7 @@
22
23 /* Environment */
24 #define CONFIG_ENV_SIZE 0x10000
25-#define CONFIG_ENV_OFFSET 0x90000
26+#define CONFIG_ENV_OFFSET 0x60000
27 #define CONFIG_ENV_SECT_SIZE (4 << 10)
28
29 #endif /* __CONFIG_H */
30--
312.21.0
32