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:
Stefan Reinauer
2008-01-18 15:34:24 +00:00
committed by Stefan Reinauer
parent f527e70333
commit 997afe6ca5
5 changed files with 19 additions and 19 deletions

View File

@@ -6,14 +6,14 @@ specialy when you are testing new motherboards, changing your hardware often, pl
INSTALL:
edit Makefile, define the root to Linuxbios tree
edit Makefile, define the root to coreboot tree
make
USAGE:
./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.

View File

@@ -1,5 +1,5 @@
/* 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>
*/
@@ -20,7 +20,7 @@ int main(void)
printf("(no other tests are done)\n");
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 {
newsum = rt->checksum - sum;
printf("BAD CHECKSUM for IRQ Routing table !!!!\n");

View File

@@ -1,5 +1,5 @@
/* 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>
* 2007.04.09 Jeremy Jackson <jerj@coplanar.net>
* updated for amd64 and general 64 bit portability
@@ -78,7 +78,7 @@ int main(void)
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;
}