summaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.org>2005-04-18 14:10:58 +0000
committerOlivier Blin <oblin@mandriva.org>2005-04-18 14:10:58 +0000
commit8dbb82a89c6c9bbe84e691c652a1821981e1b74c (patch)
tree4db13f5212a70c6adff61f4cee28a27d1007c150 /kernel
parent70815fe23287d11c08ed2dcf8d37d8997e163276 (diff)
downloaddrakx-backup-do-not-use-8dbb82a89c6c9bbe84e691c652a1821981e1b74c.tar
drakx-backup-do-not-use-8dbb82a89c6c9bbe84e691c652a1821981e1b74c.tar.gz
drakx-backup-do-not-use-8dbb82a89c6c9bbe84e691c652a1821981e1b74c.tar.bz2
drakx-backup-do-not-use-8dbb82a89c6c9bbe84e691c652a1821981e1b74c.tar.xz
drakx-backup-do-not-use-8dbb82a89c6c9bbe84e691c652a1821981e1b74c.zip
always print missing usb modules on stderr
Diffstat (limited to 'kernel')
-rw-r--r--kernel/modules.pl4
1 files changed, 1 insertions, 3 deletions
diff --git a/kernel/modules.pl b/kernel/modules.pl
index a08b7c46c..32bd0fe46 100644
--- a/kernel/modules.pl
+++ b/kernel/modules.pl
@@ -272,9 +272,7 @@ sub check() {
if (my @l = difference2(\@l2, [ keys %listed ])) {
my %not_listed;
push @{$not_listed{$module2category{$_}}}, $_ foreach @l;
- if ($verbose) {
- print "usbtable modules not listed $_: ", join(" ", @{$not_listed{$_}}), "\n" foreach sort keys %not_listed;
- }
+ print STDERR "usbtable modules not listed $_: ", join(" ", @{$not_listed{$_}}), "\n" foreach sort keys %not_listed;
}
}