From 40600f62fed8ac148166e2cdc2c4023b0066edb9 Mon Sep 17 00:00:00 2001 From: Anton Farygin Date: Wed, 14 Apr 2004 18:23:20 +0000 Subject: [PATCH] removed old debug messges, cleanup messages into init --- init.c | 7 ++----- probing.c | 4 ++-- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/init.c b/init.c index 975c131..172b32b 100644 --- a/init.c +++ b/init.c @@ -382,7 +382,7 @@ int main(int argc, char **argv) printf("*** TESTING MODE ***\n"); - printf("\n\t\t\t\033[1;40mWelcome to \033[1;36mALT Linux\033[0;39m\n\n"); +// printf("\n\t\t\t\033[1;40mWelcome to \033[1;36mALT Linux\033[0;39m\n\n"); if (!testing) { if (mount("/proc", "/proc", "proc", 0, NULL)) @@ -437,10 +437,7 @@ int main(int argc, char **argv) 2) we receive a SIGHUP */ - printf("If more people were to meet doing raklets, this planet\n"); - printf("would be a safer place.\n"); - printf("\n"); - printf("Running install...\n"); + printf("Running stage1...\n"); if (!(installpid = fork())) { /* child */ diff --git a/probing.c b/probing.c index ca2b73f..f5f3eb4 100644 --- a/probing.c +++ b/probing.c @@ -173,11 +173,11 @@ static void probe_that_type(enum driver_type type) sscanf(buf, "%x %x", &garb, &vendor); device = vendor & 0xFFFF; /* because scanf from dietlibc does not support %4f */ vendor = (vendor >> 16) & 0xFFFF; - log_message("PCI-test: device %04x %04x\n", vendor, device); + log_message("found pci device: %04x %04x", vendor, device); for (i = 0; i < len; i++) { if (pcidb[i].vendor == vendor && pcidb[i].device == device) { - log_message("PCI: device %04x %04x is \"%s\" (%s)", vendor, device, pcidb[i].name, pcidb[i].module); + log_message("module is \"%s\" (%s)", pcidb[i].name, pcidb[i].module); #ifndef DISABLE_MEDIAS if (type == SCSI_ADAPTERS) { int wait_msg = 0;