summaryrefslogtreecommitdiffstats
path: root/0007-beaglebone-Don-t-trigger-uboot-variable-lenght-limit.patch
blob: a062acfefffc0ffebf606072de8fdbf896887e19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
From 88dfa478398f9fdf8e99c19b39f98b4ce1def19b Mon Sep 17 00:00:00 2001
From: Koen Kooi <koen@dominion.thruhere.net>
Date: Wed, 3 Apr 2013 11:39:16 +0200
Subject: [PATCH 07/15] beaglebone: Don't trigger uboot variable lenght limit

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
---
 include/configs/am335x_evm.h | 20 +++-----------------
 1 file changed, 3 insertions(+), 17 deletions(-)

diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h
index 2547a87..afe7348 100644
--- a/include/configs/am335x_evm.h
+++ b/include/configs/am335x_evm.h
@@ -154,23 +154,11 @@
 #define CONFIG_BOOTCOMMAND \
 	"i2c mw 0x24 1 0x3e; " \
 	"run findfdt; " \
-	"mmc dev 1; if mmc rescan; then " \
-		"echo SD/MMC found on device ${mmcdev};" \
+	"if mmc dev 1; then " \
+		"echo eMMC found;" \
 		"setenv mmcdev 1;"\
-		"if run loadbootenv; then " \
-			"echo Loaded environment from ${bootenv};" \
-			"run importbootenv;" \
-		"fi;" \
-		"if test -n $uenvcmd; then " \
-			"echo Running uenvcmd ...;" \
-			"run uenvcmd;" \
-		"fi;" \
-		"if run loaduimage; then " \
-			"run loadfdt;" \
-			"run mmcboot;" \
-		"fi;" \
 	"else " \
-		"echo No SD/MMC found on device ${mmcdev};" \
+		"echo No eMMC found;" \
 	"fi;" \
 	"mmc dev ${mmcdev}; if mmc rescan; then " \
 		"echo SD/MMC found on device ${mmcdev};" \
@@ -186,8 +174,6 @@
 			"run loadfdt;" \
 			"run mmcboot;" \
 		"fi;" \
-	"else " \
-		"run nandboot;" \
 	"fi;" \
 
 /* Clock Defines */
-- 
1.8.3.1