summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/probing.c
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2001-05-17 20:27:56 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2001-05-17 20:27:56 +0000
commit78711279b5df2719beb7ad331697f9833da05fea (patch)
tree7ac4137f798ecbfff8af34f8d5a052327dda5e3f /mdk-stage1/probing.c
parentf6a721fbab6f015c086cb48e614e058f16f54223 (diff)
downloaddrakx-78711279b5df2719beb7ad331697f9833da05fea.tar
drakx-78711279b5df2719beb7ad331697f9833da05fea.tar.gz
drakx-78711279b5df2719beb7ad331697f9833da05fea.tar.bz2
drakx-78711279b5df2719beb7ad331697f9833da05fea.tar.xz
drakx-78711279b5df2719beb7ad331697f9833da05fea.zip
unify user notification of network and scsi devices that make load of drivers
Diffstat (limited to 'mdk-stage1/probing.c')
-rw-r--r--mdk-stage1/probing.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/mdk-stage1/probing.c b/mdk-stage1/probing.c
index fa4df5aa8..8f537998f 100644
--- a/mdk-stage1/probing.c
+++ b/mdk-stage1/probing.c
@@ -163,17 +163,13 @@ static void probe_that_type(enum driver_type type)
log_message("PCI: device %x %x is \"%s\" (%s)", vendor, device, pcidb[i].name, pcidb[i].module);
#ifndef DISABLE_MEDIAS
if (type == SCSI_ADAPTERS) {
- /* insmod takes time, let's use the wait message */
- wait_message("Installing driver for SCSI adapter:\n \n%s", pcidb[i].name);
- garb = my_insmod(pcidb[i].module, SCSI_ADAPTERS, NULL);
- remove_wait_message();
- warning_insmod_failed(garb);
+ stg1_info_message("About to load driver for SCSI adapter:\n \n%s", pcidb[i].name);
+ warning_insmod_failed(my_insmod(pcidb[i].module, SCSI_ADAPTERS, NULL));
}
#endif
#ifndef DISABLE_NETWORK
if (type == NETWORK_DEVICES) {
- /* insmod is quick, let's use the info message */
- stg1_info_message("Detected network device:\n \n%s", pcidb[i].name);
+ stg1_info_message("About to load driver for network device:\n \n%s", pcidb[i].name);
prepare_intf_descr(pcidb[i].name);
warning_insmod_failed(my_insmod(pcidb[i].module, NETWORK_DEVICES, NULL));
if (intf_descr_for_discover) /* for modules providing more than one net intf */