message string changes, mostly for consistency, also -32 bytes in .rodata

This commit is contained in:
Denis Vlasenko
2006-10-20 13:28:22 +00:00
parent dd2982882b
commit e1a0d486e4
71 changed files with 127 additions and 130 deletions

View File

@@ -4113,7 +4113,7 @@ int insmod_main( int argc, char **argv)
if (strncmp(uts_info.release, m_strversion, STRVERSIONLEN) != 0) {
if (flag_force_load) {
bb_error_msg("Warning: kernel-module version mismatch\n"
bb_error_msg("warning: kernel-module version mismatch\n"
"\t%s was compiled for kernel version %s\n"
"\twhile this kernel is version %s",
m_filename, m_strversion, uts_info.release);
@@ -4134,7 +4134,7 @@ int insmod_main( int argc, char **argv)
goto out;
k_crcs = new_is_kernel_checksummed();
} else {
bb_error_msg("Not configured to support old kernels");
bb_error_msg("not configured to support old kernels");
goto out;
}

View File

@@ -758,7 +758,7 @@ static void check_dep ( char *mod, struct mod_list_t **head, struct mod_list_t *
}
}
else {
bb_error_msg ("Bad alias %s", dt-> m_name);
bb_error_msg ("bad alias %s", dt-> m_name);
return;
}
}
@@ -897,7 +897,7 @@ int modprobe_main(int argc, char** argv)
} while ( ++optind < argc );
} else {
if (optind >= argc)
bb_error_msg_and_die ( "No module or pattern provided" );
bb_error_msg_and_die ( "no module or pattern provided" );
if ( mod_insert ( argv [optind], argc - optind - 1, argv + optind + 1 ))
bb_error_msg_and_die ( "failed to load module %s", argv [optind] );