From: <cod...@go...> - 2008-08-12 16:22:31
|
Author: M0...@gm... Date: Tue Aug 12 09:22:09 2008 New Revision: 116 Modified: branches/iVL/MdlConfLilo.module Log: - LILO config now creates a text boot option for the recently installed vector entry. - Fixed append line in cli boot option of lilo.conf prospect Modified: branches/iVL/MdlConfLilo.module ============================================================================== --- branches/iVL/MdlConfLilo.module (original) +++ branches/iVL/MdlConfLilo.module Tue Aug 12 09:22:09 2008 @@ -98,15 +98,15 @@ IF sMatchTag = ClsPartSel.sRoot THEN IF MdlLiloOsList.bVlCliOption = TRUE THEN - sCliSection = Replace(sSection, "append = \"" & sEntryApnd & "\"", "append = \"2 splash=silent\"") + sCliSection = Replace(sSection, "append = \"" & sEntryApnd & "\"", "append = \"2 " & sEntryApnd & "\"") 'splash=silent\"") sCliSection = Replace(sCliSection, "label = " & sEntryLbl, "label = " & sEntryLbl & "-tui") END IF ELSE sCliSection = "" END IF - + sFile = sFile & gb.NewLine & sSection & gb.NewLine & gb.NewLine & sCliSection & gb.NewLine END IF - sFile = sFile & gb.NewLine & sSection & gb.NewLine & gb.NewLine & sCliSection & gb.NewLine + END IF NEXT |