summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/probing.c
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2001-05-15 18:58:34 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2001-05-15 18:58:34 +0000
commit5a014226150bb2eaf92ae8544fc1f8d97e6cc5fd (patch)
tree21d8a351ad8d65bb16caedbacc76e6b54e50bb6b /mdk-stage1/probing.c
parent1351e1622cb0e9e9012943703075b43f72ee0bca (diff)
downloaddrakx-5a014226150bb2eaf92ae8544fc1f8d97e6cc5fd.tar
drakx-5a014226150bb2eaf92ae8544fc1f8d97e6cc5fd.tar.gz
drakx-5a014226150bb2eaf92ae8544fc1f8d97e6cc5fd.tar.bz2
drakx-5a014226150bb2eaf92ae8544fc1f8d97e6cc5fd.tar.xz
drakx-5a014226150bb2eaf92ae8544fc1f8d97e6cc5fd.zip
nicer layout for PCI detection messages
Diffstat (limited to 'mdk-stage1/probing.c')
-rw-r--r--mdk-stage1/probing.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mdk-stage1/probing.c b/mdk-stage1/probing.c
index ba7572831..2ffc54199 100644
--- a/mdk-stage1/probing.c
+++ b/mdk-stage1/probing.c
@@ -164,7 +164,7 @@ static void probe_that_type(enum driver_type type)
#ifndef DISABLE_MEDIAS
if (type == SCSI_ADAPTERS) {
/* insmod takes time, let's use the wait message */
- wait_message("Installing %s", pcidb[i].name);
+ wait_message("Installing: %s", pcidb[i].name);
garb = my_insmod(pcidb[i].module, SCSI_ADAPTERS, NULL);
remove_wait_message();
warning_insmod_failed(garb);
@@ -173,7 +173,7 @@ static void probe_that_type(enum driver_type type)
#ifndef DISABLE_NETWORK
if (type == NETWORK_DEVICES) {
/* insmod is quick, let's use the info message */
- info_message("Found %s", pcidb[i].name);
+ info_message("Detected 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 */