aboutsummaryrefslogtreecommitdiff
path: root/util/getpir
diff options
context:
space:
mode:
Diffstat (limited to 'util/getpir')
-rw-r--r--util/getpir/README4
-rw-r--r--util/getpir/checkpir.c4
-rw-r--r--util/getpir/getpir.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/util/getpir/README b/util/getpir/README
index 771aeb9bfb..6c5d6e2b53 100644
--- a/util/getpir/README
+++ b/util/getpir/README
@@ -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.
diff --git a/util/getpir/checkpir.c b/util/getpir/checkpir.c
index 6a9a79fa28..c9703c6f3c 100644
--- a/util/getpir/checkpir.c
+++ b/util/getpir/checkpir.c
@@ -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");
diff --git a/util/getpir/getpir.c b/util/getpir/getpir.c
index 12b4a20f22..d0ad978a40 100644
--- a/util/getpir/getpir.c
+++ b/util/getpir/getpir.c
@@ -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;
}