diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-03-17 12:51:33 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-03-17 12:51:33 +0000 |
commit | 72babf6b5bea0e5b1582ba00c19d27ffd386b32a (patch) | |
tree | 8a1d59ed06a5edfa5908bf14b0640bfeb95b48c7 /mdk-stage1 | |
parent | ceea6e0e0338f8a906d45120537f0e0530b3ab95 (diff) | |
download | drakx-72babf6b5bea0e5b1582ba00c19d27ffd386b32a.tar drakx-72babf6b5bea0e5b1582ba00c19d27ffd386b32a.tar.gz drakx-72babf6b5bea0e5b1582ba00c19d27ffd386b32a.tar.bz2 drakx-72babf6b5bea0e5b1582ba00c19d27ffd386b32a.tar.xz drakx-72babf6b5bea0e5b1582ba00c19d27ffd386b32a.zip |
more message fixes
Diffstat (limited to 'mdk-stage1')
-rw-r--r-- | mdk-stage1/thirdparty.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mdk-stage1/thirdparty.c b/mdk-stage1/thirdparty.c index 511bb56a3..b51aec471 100644 --- a/mdk-stage1/thirdparty.c +++ b/mdk-stage1/thirdparty.c @@ -219,12 +219,12 @@ static enum return_type thirdparty_autoload_modules(const char *modules_location options++; } - log_message("updatemodules: (%s) (%s)", module, options); + log_message("third party: auto-loading module (%s) (%s)", module, options); while (entry && *entry) { if (!strncmp(*entry, module, strlen(module)) && (*entry)[strlen(module)] == '.') { sprintf(final_name, "%s/%s", modules_location, *entry); if (insmod_local_file(final_name, options)) { - log_message("\t%s (floppy): failed", *entry); + log_message("\t%s (third party media): failed", *entry); stg1_error_message("Insmod %s (floppy) failed.", *entry); } break; @@ -296,7 +296,7 @@ void thirdparty_load_modules(void) } else { if (IS_AUTOMATIC) stg1_error_message("I can't find a \"to_load\" file. Please select the modules manually."); - log_message("No \"to_load\" file, prompting for modules"); + log_message("third party: no \"to_load\" file, prompting for modules"); results = thirdparty_prompt_modules(modules_location, modules_list); } umount(THIRDPARTY_MOUNT_LOCATION); |