Mailinglist Archive: opensuse-bugs (19857 mails)
| < Previous | Next > |
[Bug 393229] bootloader throws warnings about missing device-mapper
- From: bugzilla_noreply@xxxxxxxxxx
- Date: Wed, 21 May 2008 21:03:27 -0600 (MDT)
- Message-id: <20080522030327.9AC55CC7B7@xxxxxxxxxxxxxxxxxxxxxx>
https://bugzilla.novell.com/show_bug.cgi?id=393229
User xwhu@xxxxxxxxxx added comment
https://bugzilla.novell.com/show_bug.cgi?id=393229#c3
Xinwei Hu <xwhu@xxxxxxxxxx> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |NEEDINFO
Info Provider|
|aosthof@xxxxxxxxxx
--- Comment #3 from Xinwei Hu <xwhu@xxxxxxxxxx> 2008-05-21 21:03:25 MST ---
The dm_mod module is not needed/loaded according to your system configuration.
The patch goes to perl-Bootloader,
=====================>
--- lib/Bootloader/Tools.pm
+++ lib/Bootloader/Tools.pm
@@ -398,6 +398,11 @@
sub DMRaidAvailable {
my $retval = 0;
+ `grep device-mapper /proc/misc`;
+ if ($?) {
+ return $retval;
+ }
+
$dmsetup = AddPathToExecutable("dmsetup");
if (-e $dmsetup) {
=====================<
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
User xwhu@xxxxxxxxxx added comment
https://bugzilla.novell.com/show_bug.cgi?id=393229#c3
Xinwei Hu <xwhu@xxxxxxxxxx> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |NEEDINFO
Info Provider|
|aosthof@xxxxxxxxxx
--- Comment #3 from Xinwei Hu <xwhu@xxxxxxxxxx> 2008-05-21 21:03:25 MST ---
The dm_mod module is not needed/loaded according to your system configuration.
The patch goes to perl-Bootloader,
=====================>
--- lib/Bootloader/Tools.pm
+++ lib/Bootloader/Tools.pm
@@ -398,6 +398,11 @@
sub DMRaidAvailable {
my $retval = 0;
+ `grep device-mapper /proc/misc`;
+ if ($?) {
+ return $retval;
+ }
+
$dmsetup = AddPathToExecutable("dmsetup");
if (-e $dmsetup) {
=====================<
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
| < Previous | Next > |