-
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: 17479 b: refs/heads/master c: 80c0531 h: refs/heads/master i: 17477: 40443d5 17475: f79fe7c 17471: c8f5f37 v: v3
- Loading branch information
Linus Torvalds
committed
Jan 10, 2006
1 parent
67827eb
commit c9e39b9
Showing
254 changed files
with
5,464 additions
and
7,771 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: 11b751ae8c8ca3fa24c85bd5a3e51dd9f95cda17 | ||
refs/heads/master: 80c0531514516e43ae118ddf38424e06e5c3cb3c |
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
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.