All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kiril Maler <kiril.maler@gmail.com>
To: linux-omap@vger.kernel.org
Subject: Fwd: Workaround for hanging u-boot 'Load Address: fffffff2'
Date: Mon, 14 Jan 2013 10:02:11 +0100	[thread overview]
Message-ID: <CABJxTWGmmZ55GE7YiwVCCj8JmofQBF_wc-Q9PBtfQW-uarJhDg@mail.gmail.com> (raw)
In-Reply-To: <CABJxTWFKCxS=syoFCyRyCMdJmwMg_yLq3pOMfr9MhCO7g=Rtzg@mail.gmail.com>

---------- Forwarded message ----------
From: Kiril Maler <kiril.maler@gmail.com>
Date: 14 January 2013 09:46
Subject: Workaround for hanging u-boot 'Load Address: fffffff2'
To: "davinci-linux-open-source@linux.davincidsp.com"
<davinci-linux-open-source@linux.davincidsp.com>


If your fresh uImage hangs in a similar way:

## Booting kernel from Legacy Image at 81000000 ...
   Image Name:   Linux-3.8.0-rc2-tst04+
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    1161118 Bytes = 1.1 MiB
   Load Address: fffffff2
   Entry Point:  fffffff2
   Verifying Checksum ... OK
   Loading Kernel Image ...


Then a temporary fix could be added in arch/arm/boot/Makefile

git diff  arch/arm/boot/Makefile
diff --git a/arch/arm/boot/Makefile b/arch/arm/boot/Makefile
index abfce28..4182943 100644
--- a/arch/arm/boot/Makefile
+++ b/arch/arm/boot/Makefile
@@ -13,6 +13,8 @@

 ifneq ($(MACHINE),)
 include $(srctree)/$(MACHINE)/Makefile.boot
+else
+include $(srctree)/arch/arm/mach-omap2/Makefile.boot
 endif

 # Note: the following conditions must always be true:


Change 'mach-omap2' in the patch above to required machine directory

This is needed because 'MACHINE' in arch/arm/Makefile is
set empty when CONFIG_ARCH_MULTIPLATFORM=y, and consequently parameters
-a and -e are empty in arch/arm/boot/.uImage.cmd

Regards,

       reply	other threads:[~2013-01-14  9:02 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CABJxTWFKCxS=syoFCyRyCMdJmwMg_yLq3pOMfr9MhCO7g=Rtzg@mail.gmail.com>
2013-01-14  9:02 ` Kiril Maler [this message]
2013-01-14 16:27   ` Fwd: Workaround for hanging u-boot 'Load Address: fffffff2' Tony Lindgren

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CABJxTWGmmZ55GE7YiwVCCj8JmofQBF_wc-Q9PBtfQW-uarJhDg@mail.gmail.com \
    --to=kiril.maler@gmail.com \
    --cc=linux-omap@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.