summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS3
-rwxr-xr-xperl-install/standalone/drakbug9
2 files changed, 10 insertions, 2 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index f70e63c05..6e199f93c 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,5 +1,6 @@
- drakbug:
- o ask to attach blkid output when debugging a boot issue
+ o ask to attach blkid output as well as /etc/fstab & the like when
+ debugging a boot issue
o do not ask to include kernel version & /proc/cpuinfo since this is
done automatically
o request to attach lspcidrake's output rather than include it
diff --git a/perl-install/standalone/drakbug b/perl-install/standalone/drakbug
index d8573d681..5ddc2b727 100755
--- a/perl-install/standalone/drakbug
+++ b/perl-install/standalone/drakbug
@@ -160,7 +160,14 @@ gtkadd($window->{window},
P("It would be very useful to attach to your report the output of the following command: %s.",
"Things useful to attach to your report are the output of the following commands: %s.",
scalar(@commands),
- join(", ", map { N("'%s'", $_) } @commands))
+ join(", ", map { N("'%s'", $_) } @commands)) .
+ if_(is_a_boot_issue(),
+ "\n" .
+ N("You should also attach the following files: %s as well as %s.",
+ '/etc/modprobe.conf, /etc/fstab, /boot/grub/menu.lst, /boot/grub/devices.map',
+ '/etc/lilo.conf',
+ )
+ )
]
])),
0, gtknew('Title2', label => N("Please describe what you were doing when it crashed:"), width => $width),