diff options
author | Thomas Bushnell <thomas@gnu.org> | 1997-03-24 21:53:03 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1997-03-24 21:53:03 +0000 |
commit | 30b32d2ccbf95436b642e6208d6829dcf68981fa (patch) | |
tree | 481af37a46b22473db7cadf280a6b5466136d726 /i386/i386at/gpl/linux/linux_init.c | |
parent | 455c9e455d124e3359d8f9e16ffe111178589e6f (diff) | |
download | gnumach-30b32d2ccbf95436b642e6208d6829dcf68981fa.tar.gz gnumach-30b32d2ccbf95436b642e6208d6829dcf68981fa.tar.bz2 gnumach-30b32d2ccbf95436b642e6208d6829dcf68981fa.zip |
prerelease work
Diffstat (limited to 'i386/i386at/gpl/linux/linux_init.c')
-rw-r--r-- | i386/i386at/gpl/linux/linux_init.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/i386/i386at/gpl/linux/linux_init.c b/i386/i386at/gpl/linux/linux_init.c index d2abae28..4e7b006a 100644 --- a/i386/i386at/gpl/linux/linux_init.c +++ b/i386/i386at/gpl/linux/linux_init.c @@ -54,6 +54,8 @@ #include <asm/system.h> +#include <i386/device-drivers.h> + /* * Set if the machine has an EISA bus. */ @@ -230,7 +232,9 @@ linux_init() /* * Initialize devices. */ +#ifdef CONFIG_INET linux_net_emulation_init(); +#endif cli(); device_setup(); @@ -389,7 +393,7 @@ calibrate_delay() { int ticks; - printk("Calibrating delay loop.. "); + /* printk("Calibrating delay loop.. "); */ while (loops_per_sec <<= 1) { /* Wait for "start of" clock tick. */ ticks = jiffies; @@ -402,11 +406,11 @@ calibrate_delay() if (ticks >= hz) { loops_per_sec = muldiv(loops_per_sec, hz, ticks); - printk("ok - %lu.%02lu BogoMips\n", + /*printk("ok - %lu.%02lu BogoMips\n", loops_per_sec / 500000, - (loops_per_sec / 5000) % 100); + (loops_per_sec / 5000) % 100);*/ return; } } - printk("failed\n"); +/* printk("failed\n");*/ } |