[U-Boot] [PATCH] edminiv2: move U-boot at top of RAM

This makes the first 63 megabytes of RAM free to use for loading images and booting kernels however big they are.
Signed-off-by: Albert Aribaud albert.aribaud@free.fr --- board/LaCie/edminiv2/config.mk | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/board/LaCie/edminiv2/config.mk b/board/LaCie/edminiv2/config.mk index 3dec1aa..a972736 100644 --- a/board/LaCie/edminiv2/config.mk +++ b/board/LaCie/edminiv2/config.mk @@ -24,4 +24,6 @@ # MA 02110-1301 USA #
-TEXT_BASE = 0x00100000 +# Leave lower 63 MB of RAM available for linux images and kernel + +TEXT_BASE = 0x03f00000

Dear Albert Aribaud,
In message 1283586138-4680-1-git-send-email-albert.aribaud@free.fr you wrote:
This makes the first 63 megabytes of RAM free to use for loading images and booting kernels however big they are.
Signed-off-by: Albert Aribaud albert.aribaud@free.fr
board/LaCie/edminiv2/config.mk | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/board/LaCie/edminiv2/config.mk b/board/LaCie/edminiv2/config.mk index 3dec1aa..a972736 100644 --- a/board/LaCie/edminiv2/config.mk +++ b/board/LaCie/edminiv2/config.mk @@ -24,4 +24,6 @@ # MA 02110-1301 USA #
-TEXT_BASE = 0x00100000 +# Leave lower 63 MB of RAM available for linux images and kernel
+TEXT_BASE = 0x03f00000
You are wasting your time. You should rather rebase your work on top of Heiko's relocation patches.
Best regards,
Wolfgang Denk
participants (2)
-
Albert Aribaud
-
Wolfgang Denk