From c419daa632a0277c881b84872542491d3cd199ef Mon Sep 17 00:00:00 2001 From: Marc Fiuczynski Date: Tue, 24 Feb 2009 04:20:26 +0000 Subject: [PATCH] Make sure dm_mod is loaded when running on a kernel where this has been built as a module --- source/steps/InitializeBootManager.py | 2 ++ 1 file changed, 2 insertions(+) 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" -- 2.47.0