-
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: 17460 b: refs/heads/master c: a457aa6 h: refs/heads/master v: v3
- Loading branch information
Linus Torvalds
committed
Jan 10, 2006
1 parent
a0864dc
commit b1ed08b
Showing
214 changed files
with
5,414 additions
and
7,422 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: b3c29d85bf0dcce9e99cbfba2811aeefae017aaa | ||
refs/heads/master: a457aa6c2bdd743bbbffd3f9e4fdbd8c71f8af1b |
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
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,57 @@ | ||
/* | ||
* linux/arch/arm/boot/compressed/head-at91rm9200.S | ||
* | ||
* Copyright (C) 2003 SAN People | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
*/ | ||
#include <asm/mach-types.h> | ||
|
||
.section ".start", "ax" | ||
|
||
@ Atmel AT91RM9200-DK : 262 | ||
mov r3, #(MACH_TYPE_AT91RM9200DK & 0xff) | ||
orr r3, r3, #(MACH_TYPE_AT91RM9200DK & 0xff00) | ||
cmp r7, r3 | ||
beq 99f | ||
|
||
@ Cogent CSB337 : 399 | ||
mov r3, #(MACH_TYPE_CSB337 & 0xff) | ||
orr r3, r3, #(MACH_TYPE_CSB337 & 0xff00) | ||
cmp r7, r3 | ||
beq 99f | ||
|
||
@ Cogent CSB637 : 648 | ||
mov r3, #(MACH_TYPE_CSB637 & 0xff) | ||
orr r3, r3, #(MACH_TYPE_CSB637 & 0xff00) | ||
cmp r7, r3 | ||
beq 99f | ||
|
||
@ Atmel AT91RM9200-EK : 705 | ||
mov r3, #(MACH_TYPE_AT91RM9200EK & 0xff) | ||
orr r3, r3, #(MACH_TYPE_AT91RM9200EK & 0xff00) | ||
cmp r7, r3 | ||
beq 99f | ||
|
||
@ Conitec Carmeva : 769 | ||
mov r3, #(MACH_TYPE_CARMEVA & 0xff) | ||
orr r3, r3, #(MACH_TYPE_CARMEVA & 0xff00) | ||
cmp r7, r3 | ||
beq 99f | ||
|
||
@ KwikByte KB920x : 612 | ||
mov r3, #(MACH_TYPE_KB9200 & 0xff) | ||
orr r3, r3, #(MACH_TYPE_KB9200 & 0xff00) | ||
cmp r7, r3 | ||
beq 99f | ||
|
||
@ Unknown board, use the AT91RM9200DK board | ||
@ mov r7, #MACH_TYPE_AT91RM9200 | ||
mov r7, #(MACH_TYPE_AT91RM9200DK & 0xff) | ||
orr r7, r7, #(MACH_TYPE_AT91RM9200DK & 0xff00) | ||
|
||
99: |
This file was deleted.
Oops, something went wrong.
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
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
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
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
Oops, something went wrong.