diff mbox

[U-Boot,RFC,2/6] Mips: Purple: Adapt u-boot.lds to changed CPU directory layout

Message ID 1299676619-7963-3-git-send-email-daniel.schwierzeck@googlemail.com
State Superseded, archived
Headers show

Commit Message

Daniel Schwierzeck March 9, 2011, 1:16 p.m. UTC
This fixes a linker error introduced by the previous commit.

Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@googlemail.com>
Cc: Shinya Kuribayashi <skuribay@pobox.com>
---
 board/purple/u-boot.lds |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

--
1.7.4.1

Comments

Shinya Kuribayashi March 12, 2011, 2:27 p.m. UTC | #1
On 3/9/11 10:16 PM, daniel.schwierzeck@googlemail.com wrote:
> This fixes a linker error introduced by the previous commit.

If so, such fix should be made along with that previous commit.
diff mbox

Patch

diff --git a/board/purple/u-boot.lds b/board/purple/u-boot.lds
index 719f268..982937d 100644
--- a/board/purple/u-boot.lds
+++ b/board/purple/u-boot.lds
@@ -34,7 +34,7 @@  SECTIONS
 	. = ALIGN(4);
 	.text       :
 	{
-	  arch/mips/cpu/start.o		(.text)
+	  arch/mips/cpu/mips32/start.o	(.text)
 	  board/purple/lowlevel_init.o	(.text)
 	  . = DEFINED(env_offset) ? env_offset : .;
 	  common/env_embedded.o	(.ppcenv)