diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2008-01-18 16:17:44 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2008-01-18 16:17:44 +0000 |
commit | 7223ab7c4a2620758fd4f80e0f73d2868d589638 (patch) | |
tree | 2c49ed32627fe65f6aff4f040c805ef1fbd80abb /util/mptable | |
parent | ca374d455cad29c546a2d310c331a4ae431c33f9 (diff) |
rename linuxbios_* files in utils repository.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3058 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/mptable')
-rw-r--r-- | util/mptable/mptable.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/mptable/mptable.c b/util/mptable/mptable.c index 4355d7116f..9c6b4f3127 100644 --- a/util/mptable/mptable.c +++ b/util/mptable/mptable.c @@ -83,7 +83,7 @@ static const char rcsid[] = #define MAXPNSTR 132 -#define LINUXBIOS_MP_TABLE 0 +#define COREBOOT_MP_TABLE 0 enum busTypes { CBUS = 1, @@ -299,7 +299,7 @@ int dmesg = 0; int grope = 0; int verbose = 0; int noisy = 0; -/* preamble to the mptable. This is fixed for all linuxbioses */ +/* preamble to the mptable. This is fixed for all coreboots */ char *preamble[] = { "#include <arch/smp/mpspec.h>", @@ -422,7 +422,7 @@ main( int argc, char *argv[] ) if (verbose) puts( SEP_LINE2 ); printf( "/* generatred by MPTable, version %d.%d.%d*/\n", VMAJOR, VMINOR, VDELTA ); - printf("/* as modified by RGM for LinuxBIOS */\n"); + printf("/* as modified by RGM for coreboot */\n"); write_code(preamble); /* Ron hates getopt() */ @@ -536,7 +536,7 @@ apic_probe( vm_offset_t* paddr, int* where ) target = 0; segment = 0; if ( verbose ) - printf( " searching for LinuxBIOS MP table @ 0x%08x (%dK)\n", + printf( " searching for coreboot MP table @ 0x%08x (%dK)\n", target, segment ); seekEntry( target ); readEntry( buffer, ONE_KBYTE ); |