util/ renames
Acked-by: Stefan Reinauer <stepan@coresystems.de> Signed-off-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3056 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
committed by
Stefan Reinauer
parent
f527e70333
commit
997afe6ca5
@@ -6,14 +6,14 @@ specialy when you are testing new motherboards, changing your hardware often, pl
|
|||||||
|
|
||||||
INSTALL:
|
INSTALL:
|
||||||
|
|
||||||
edit Makefile, define the root to Linuxbios tree
|
edit Makefile, define the root to coreboot tree
|
||||||
make
|
make
|
||||||
|
|
||||||
USAGE:
|
USAGE:
|
||||||
|
|
||||||
./getpir
|
./getpir
|
||||||
|
|
||||||
Will dump irq table to the file called irq_tables.c, ready to use with Linuxbios. Just move the
|
Will dump irq table to the file called irq_tables.c, ready to use with coreboot. Just move the
|
||||||
file to corresponding place in the linux bios tree.
|
file to corresponding place in the linux bios tree.
|
||||||
|
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/* checkpir.c : This software is released under GPL
|
/* checkpir.c : This software is released under GPL
|
||||||
* For LinuxBIOS use only
|
* For coreboot use only
|
||||||
* Aug 26 2001 , Nikolai Vladychevski, <niko@isl.net.mx>
|
* Aug 26 2001 , Nikolai Vladychevski, <niko@isl.net.mx>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -20,7 +20,7 @@ int main(void)
|
|||||||
printf("(no other tests are done)\n");
|
printf("(no other tests are done)\n");
|
||||||
|
|
||||||
if (!sum) {
|
if (!sum) {
|
||||||
printf("Checksum for IRQ Routing table is ok. You can use irq_tables.c in LinuxBIOS now.\n");
|
printf("Checksum for IRQ Routing table is ok. You can use irq_tables.c in coreboot now.\n");
|
||||||
} else {
|
} else {
|
||||||
newsum = rt->checksum - sum;
|
newsum = rt->checksum - sum;
|
||||||
printf("BAD CHECKSUM for IRQ Routing table !!!!\n");
|
printf("BAD CHECKSUM for IRQ Routing table !!!!\n");
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/* getpir.c : This software is released under GPL
|
/* getpir.c : This software is released under GPL
|
||||||
* For LinuxBIOS use only
|
* For coreboot use only
|
||||||
* Aug 26 2001 , Nikolai Vladychevski, <niko@isl.net.mx>
|
* Aug 26 2001 , Nikolai Vladychevski, <niko@isl.net.mx>
|
||||||
* 2007.04.09 Jeremy Jackson <jerj@coplanar.net>
|
* 2007.04.09 Jeremy Jackson <jerj@coplanar.net>
|
||||||
* updated for amd64 and general 64 bit portability
|
* updated for amd64 and general 64 bit portability
|
||||||
@@ -78,7 +78,7 @@ int main(void)
|
|||||||
|
|
||||||
close(fd_mem);
|
close(fd_mem);
|
||||||
|
|
||||||
printf("Done, you can move the file to the LinuxBIOS tree now.\n");
|
printf("Done, you can move the file to the coreboot tree now.\n");
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@@ -11,14 +11,14 @@ Superiotool is a user-space utility which can
|
|||||||
- dump all register contents of the Super I/O chip, together with the
|
- dump all register contents of the Super I/O chip, together with the
|
||||||
default values as per datasheet (to make comparing the values easy).
|
default values as per datasheet (to make comparing the values easy).
|
||||||
|
|
||||||
It is mainly used for LinuxBIOS development purposes (see linuxbios.org
|
It is mainly used for coreboot development purposes (see coreboot.org
|
||||||
for details on LinuxBIOS), but it may also be useful for other things.
|
for details on coreboot), but it may also be useful for other things.
|
||||||
|
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
------------
|
------------
|
||||||
|
|
||||||
$ svn co svn://linuxbios.org/repos/trunk/util/superiotool
|
$ svn co svn://coreboot.org/repos/trunk/util/superiotool
|
||||||
|
|
||||||
$ cd superiotool
|
$ cd superiotool
|
||||||
|
|
||||||
@@ -54,21 +54,21 @@ Typical usage of superiotool:
|
|||||||
Supported Super I/O Chips
|
Supported Super I/O Chips
|
||||||
-------------------------
|
-------------------------
|
||||||
|
|
||||||
Please see http://linuxbios.org/Superiotool#Supported_devices.
|
Please see http://coreboot.org/Superiotool#Supported_devices.
|
||||||
|
|
||||||
There's also a collection of sample register dumps from various Super I/O
|
There's also a collection of sample register dumps from various Super I/O
|
||||||
chips on that page. Please send further register dumps (either from a
|
chips on that page. Please send further register dumps (either from a
|
||||||
proprietary BIOS and/or from LinuxBIOS) to the LinuxBIOS mailing list
|
proprietary BIOS and/or from coreboot) to the coreboot mailing list
|
||||||
(http://linuxbios.org/Mailinglist).
|
(http://coreboot.org/Mailinglist).
|
||||||
|
|
||||||
|
|
||||||
Website and Mailing List
|
Website and Mailing List
|
||||||
------------------------
|
------------------------
|
||||||
|
|
||||||
The main website is http://linuxbios.org/Superiotool.
|
The main website is http://coreboot.org/Superiotool.
|
||||||
|
|
||||||
For additional information, patches, and discussions, please join the
|
For additional information, patches, and discussions, please join the
|
||||||
LinuxBIOS mailing list at http://linuxbios.org/Mailinglist, where most
|
coreboot mailing list at http://coreboot.org/Mailinglist, where most
|
||||||
superiotool developers are subscribed.
|
superiotool developers are subscribed.
|
||||||
|
|
||||||
|
|
||||||
|
@@ -14,12 +14,12 @@ is a GPL'd user-space utility which can
|
|||||||
* dump all register contents of the Super I/O chip, together with the
|
* dump all register contents of the Super I/O chip, together with the
|
||||||
default values as per datasheet (to make comparing the values easy).
|
default values as per datasheet (to make comparing the values easy).
|
||||||
.PP
|
.PP
|
||||||
It is mainly used for LinuxBIOS development purposes (see linuxbios.org
|
It is mainly used for coreboot development purposes (see coreboot.org
|
||||||
for details on LinuxBIOS), but it may also be useful for other things.
|
for details on coreboot), but it may also be useful for other things.
|
||||||
.PP
|
.PP
|
||||||
The list of supported Super I/O chips is available at:
|
The list of supported Super I/O chips is available at:
|
||||||
.br
|
.br
|
||||||
.B http://linuxbios.org/Superiotool#Supported_devices
|
.B http://coreboot.org/Superiotool#Supported_devices
|
||||||
.SH OPTIONS
|
.SH OPTIONS
|
||||||
If no command line option is specified,
|
If no command line option is specified,
|
||||||
.B superiotool
|
.B superiotool
|
||||||
@@ -98,8 +98,8 @@ Show version information and exit.
|
|||||||
.B "\-h, \-\-help"
|
.B "\-h, \-\-help"
|
||||||
Show a help text and exit.
|
Show a help text and exit.
|
||||||
.SH BUGS
|
.SH BUGS
|
||||||
Please report any bugs at http://tracker.linuxbios.org/trac/LinuxBIOS/
|
Please report any bugs at http://tracker.coreboot.org/trac/coreboot/
|
||||||
or on the LinuxBIOS mailing list (http://linuxbios.org/Mailinglist).
|
or on the coreboot mailing list (http://coreboot.org/Mailinglist).
|
||||||
.SH AUTHORS
|
.SH AUTHORS
|
||||||
Please see the individual source code files and/or the README file.
|
Please see the individual source code files and/or the README file.
|
||||||
.SH LICENCE
|
.SH LICENCE
|
||||||
|
Reference in New Issue
Block a user