linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* fix up the bd_info address
@ 2006-10-26 20:17 Vitaly Bordug
  0 siblings, 0 replies; only message in thread
From: Vitaly Bordug @ 2006-10-26 20:17 UTC (permalink / raw)
  To: Grant Likely; +Cc: linuxppc-dev@ozlabs.org


[-- Attachment #1.1: Type: text/plain, Size: 317 bytes --]

Hi,

The patch is attached. It is applied after Matt's bootm stuff. I was going to send it through u-boot list when
all the things around FDT will arrive there. It used to fix the problem booting the bd_t kernel on FDT u-boot.

Just as reference for now.

Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: fix_bd_info_address.patch --]
[-- Type: text/x-patch; name=fix_bd_info_address.patch, Size: 783 bytes --]

Patch fixes the address of the board info passed to kernel when OF tree is disabled.

---

 common/cmd_bootm.c |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c
index f1c0eb4..eb59817 100644
--- a/common/cmd_bootm.c
+++ b/common/cmd_bootm.c
@@ -836,8 +836,12 @@ #endif
 	(*kernel) (kbd, initrd_start, initrd_end, cmd_start, cmd_end);
 
 #else
-	ft_setup(of_flat_tree, kbd, initrd_start, initrd_end);
-	/* ft_dump_blob(of_flat_tree); */
+	if (getenv("disable_of") != NULL)
+		of_flat_tree = kbd;
+	else {
+		ft_setup(of_flat_tree, kbd, initrd_start, initrd_end);
+		/* ft_dump_blob(of_flat_tree); */
+	}
 
 #if defined(CFG_INIT_RAM_LOCK) && !defined(CONFIG_E500)
 	unlock_ram_in_cache();

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2006-10-26 20:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-26 20:17 fix up the bd_info address Vitaly Bordug

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).