From: Marc Fiuczynski Date: Tue, 24 Feb 2009 04:20:26 +0000 (+0000) Subject: Make sure dm_mod is loaded when running on a kernel where this has been built as... X-Git-Tag: BootManager-3.2-17~6 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=c419daa632a0277c881b84872542491d3cd199ef;p=bootmanager.git Make sure dm_mod is loaded when running on a kernel where this has been built as a module --- diff --git a/source/steps/InitializeBootManager.py b/source/steps/InitializeBootManager.py index d482133..2f976da 100644 --- a/source/steps/InitializeBootManager.py +++ b/source/steps/InitializeBootManager.py @@ -86,6 +86,8 @@ def Run( vars, log ): log.write( "Loading support for Fusion MPT SCSI controllers\n" ) utils.sysexec_noerr( "modprobe mptscsih", log ) + log.write( "Loading support for LVM\n" ) + utils.sysexec_noerr( "modprobe dm_mod", log ) # for anything that needs to know we are running under the boot cd and # not the runtime os os.environ['PL_BOOTCD']= "1"