-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 163376 b: refs/heads/master c: 3c92832 h: refs/heads/master v: v3
- Loading branch information
Magnus Damm
authored and
Paul Mundt
committed
Jul 29, 2009
1 parent
d40aeb0
commit 7ccec35
Showing
7 changed files
with
47 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: fd78a76aefb5bf28a11d6960d29e03a11db62320 | ||
refs/heads/master: 3c928320b2254cb6c8d8a7919a1fcf94ca7cae66 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# | ||
# linux/arch/sh/boot/romimage/Makefile | ||
# | ||
# create an image suitable for burning to flash from zImage | ||
# | ||
|
||
targets := vmlinux head.o | ||
|
||
OBJECTS = $(obj)/head.o | ||
LDFLAGS_vmlinux := --oformat $(ld-bfd) -Ttext 0 -e romstart | ||
|
||
$(obj)/vmlinux: $(OBJECTS) $(obj)/piggy.o FORCE | ||
$(call if_changed,ld) | ||
@: | ||
|
||
LDFLAGS_piggy.o := -r --format binary --oformat $(ld-bfd) -T | ||
|
||
$(obj)/piggy.o: $(obj)/vmlinux.scr arch/sh/boot/zImage FORCE | ||
$(call if_changed,ld) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/* | ||
* linux/arch/sh/boot/romimage/head.S | ||
* | ||
* Board specific setup code, executed before zImage loader | ||
*/ | ||
|
||
.text | ||
.global romstart | ||
romstart: | ||
#include <romimage.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
SECTIONS | ||
{ | ||
.text : { | ||
*(.data) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/* do nothing here by default */ |