summaryrefslogtreecommitdiffstats
path: root/recipes-bsp/u-boot/u-boot-2010.12-psp03.21.00.04.sdk
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-bsp/u-boot/u-boot-2010.12-psp03.21.00.04.sdk')
-rw-r--r--recipes-bsp/u-boot/u-boot-2010.12-psp03.21.00.04.sdk/am180x-evm/0001-da850evm-change-default-memory-to-not-limit-at-32MB.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/recipes-bsp/u-boot/u-boot-2010.12-psp03.21.00.04.sdk/am180x-evm/0001-da850evm-change-default-memory-to-not-limit-at-32MB.patch b/recipes-bsp/u-boot/u-boot-2010.12-psp03.21.00.04.sdk/am180x-evm/0001-da850evm-change-default-memory-to-not-limit-at-32MB.patch
new file mode 100644
index 00000000..b19575b3
--- /dev/null
+++ b/recipes-bsp/u-boot/u-boot-2010.12-psp03.21.00.04.sdk/am180x-evm/0001-da850evm-change-default-memory-to-not-limit-at-32MB.patch
@@ -0,0 +1,34 @@
1From df5c87c4e1be1670475eba1187301a2f7a7aca30 Mon Sep 17 00:00:00 2001
2From: Chase Maupin <Chase.Maupin@ti.com>
3Date: Wed, 22 Jun 2011 12:12:09 -0500
4Subject: [PATCH] da850evm: change default memory to not limit at 32MB
5
6* Change the default mem= option passed to the Linux kernel to
7 not limit the memory to 32MB.
8* This change is used by AM devices that do not need to reserve
9 space for the DSP image. By removing the mem= option we get
10 access to all of the memory on the system.
11* Limiting the memory to 32MB causes out-of-memory errors
12 when running large applications such as web browsers
13
14Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
15---
16 include/configs/da850evm.h | 2 +-
17 1 files changed, 1 insertions(+), 1 deletions(-)
18
19diff --git a/include/configs/da850evm.h b/include/configs/da850evm.h
20index 4a1e0af..55badc9 100755
21--- a/include/configs/da850evm.h
22+++ b/include/configs/da850evm.h
23@@ -184,7 +184,7 @@
24 #define CONFIG_CMDLINE_TAG
25 #define CONFIG_REVISION_TAG
26 #define CONFIG_SETUP_MEMORY_TAGS
27-#define CONFIG_BOOTARGS "mem=32M console=ttyS2,115200n8 root=/dev/mmcblk0p2 rw rootwait ip=off"
28+#define CONFIG_BOOTARGS "console=ttyS2,115200n8 root=/dev/mmcblk0p2 rw rootwait ip=off"
29 #define CONFIG_BOOTCOMMAND "if mmc rescan 0; then if fatload mmc 0 0xc0600000 boot.scr; then source 0xc0600000; else fatload mmc 0 0xc0700000 uImage; bootm c0700000; fi; else sf probe 0; sf read 0xc0700000 0x80000 0x220000; bootm 0xc0700000; fi"
30 #define CONFIG_BOOTDELAY 3
31
32--
331.7.0.4
34