-
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: 145012 b: refs/heads/master c: 9c1ee18 h: refs/heads/master v: v3
- Loading branch information
Aneesh Kumar K.V
authored and
Theodore Ts'o
committed
May 13, 2009
1 parent
edae969
commit 1d4d5ae
Showing
349 changed files
with
3,480 additions
and
5,899 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: c244450dac6d83be1ceadf29a65a5b49c34ceed8 | ||
refs/heads/master: 9c1ee184a30394e54165fa4c15923cabd952c106 |
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -714,7 +714,7 @@ static int __init npe_init_module(void) | |
} | ||
|
||
if (!found) | ||
return -ENODEV; | ||
return -ENOSYS; | ||
return 0; | ||
} | ||
|
||
|
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
File renamed without changes.
8 changes: 2 additions & 6 deletions
8
trunk/arch/cris/boot/Makefile → trunk/arch/cris/arch-v10/boot/Makefile
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,25 @@ | ||
Creation of the self-extracting compressed kernel image (vmlinuz) | ||
----------------------------------------------------------------- | ||
$Id: README,v 1.1 2001/12/17 13:59:27 bjornw Exp $ | ||
|
||
This can be slightly confusing because it's a process with many steps. | ||
|
||
The kernel object built by the arch/etrax100/Makefile, vmlinux, is split | ||
by that makefile into text and data binary files, vmlinux.text and | ||
vmlinux.data. | ||
|
||
Those files together with a ROM filesystem can be catted together and | ||
burned into a flash or executed directly at the DRAM origin. | ||
|
||
They can also be catted together and compressed with gzip, which is what | ||
happens in this makefile. Together they make up piggy.img. | ||
|
||
The decompressor is built into the file decompress.o. It is turned into | ||
the binary file decompress.bin, which is catted together with piggy.img | ||
into the file vmlinuz. It can be executed in an arbitrary place in flash. | ||
|
||
Be careful - it assumes some things about free locations in DRAM. It | ||
assumes the DRAM starts at 0x40000000 and that it is at least 8 MB, | ||
so it puts its code at 0x40700000, and initial stack at 0x40800000. | ||
|
||
-Bjorn |
File renamed without changes.
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.