Author: uelsk8s
Date: Mon Aug 25 21:28:18 2008
New Revision: 144
Modified:
branches/iVL/.project
branches/iVL/FMain.class
branches/iVL/MdlConfLilo.module
branches/iVL/MdlInstallCustom.module
branches/iVL/MdlInstallSys.module
branches/iVL/MdlPartSel.module
branches/iVL/installer.gambas
Log:
changed post install script. initrd is embedding now
Modified: branches/iVL/.project
==============================================================================
--- branches/iVL/.project (original)
+++ branches/iVL/.project Mon Aug 25 21:28:18 2008
@@ -1,7 +1,7 @@
# Gambas Project File 2.0
Title=VectorLinux Installer
Startup=MdlCore
-Version=0.0.33
+Version=0.0.52
Library=gb.gtk
Library=gb.form
Library=gb.debug
@@ -16,6 +16,7 @@
Language=en_US
ControlPublic=1
ModulePublic=1
+ExecPath=/home/uel/svn-installer/installer.gambas
Maintainer=M0E-lnx
Vendor=VectorLinux
Address=M0...@gm...
Modified: branches/iVL/FMain.class
==============================================================================
--- branches/iVL/FMain.class (original)
+++ branches/iVL/FMain.class Mon Aug 25 21:28:18 2008
@@ -28,7 +28,7 @@
PUBLIC SUB Form_Open()
DIM iImg AS Image
-'ME.Maximized = TRUE
+ME.Maximized = TRUE
MdlCore.LOCK_GUI
'MdlCore.LOCK_GUI()
Modified: branches/iVL/MdlConfLilo.module
==============================================================================
--- branches/iVL/MdlConfLilo.module (original)
+++ branches/iVL/MdlConfLilo.module Mon Aug 25 21:28:18 2008
@@ -103,7 +103,7 @@
SHELL "chmod 700 " & ClsGlobal.sTargetMnt &/ "var/log/setup/init" WAIT
'SHELL "touch " & ClsGlobal.sTargetMnt
&/ "var/log/setup/init/config-stage2"
sOut = "#!/bin/bash \n" &
- "/sbin/config-stage1 vector-virgin-light"
+ "/sbin/config-stage1 vector-virgin-heavy"
File.Save(ClsGlobal.sTargetMnt &/ "var/log/setup/init/config-stage2",
sOut)
'SHELL "echo \"" & sOut & "\" >" & ClsGlobal.sTargetMnt
&/ "var/log/setup/init/config-stage2"
SHELL "chmod +x " & ClsGlobal.sTargetMnt
&/ "var/log/setup/init/config-stage2"
Modified: branches/iVL/MdlInstallCustom.module
==============================================================================
--- branches/iVL/MdlInstallCustom.module (original)
+++ branches/iVL/MdlInstallCustom.module Mon Aug 25 21:28:18 2008
@@ -88,7 +88,7 @@
FrmInstallSys.pbInstallProg2.Value = 1
'Message.Info("packages have been installed in your system. Please click
next to configure it.")
FrmInstallSys.tlBanner.Text = "Vectorlinux is now installed in your
system. Please click next to configure it."
- FrmInstallSys.tlCurrPkg.Text = "packages have been installed in your
system. Please click next to configure it."
+ FrmInstallSys.tlCurrPkg.Text = "packages have been Installed. Please
click next to move on to System Configuration."
WITH FMain
.btQuit.Enabled = TRUE
.btQuit.ForeColor = Color.Black
Modified: branches/iVL/MdlInstallSys.module
==============================================================================
--- branches/iVL/MdlInstallSys.module (original)
+++ branches/iVL/MdlInstallSys.module Mon Aug 25 21:28:18 2008
@@ -363,7 +363,7 @@
FrmInstallSys.pbInstallProg2.Value = 1
'Message.Info("Vectorlinux is now installed in your system. Please click
next to configure it.")
FrmInstallSys.tlBanner.Text = "Vectorlinux is now installed in your
system. Please click next to configure it."
- FrmInstallSys.tlCurrPkg.Text = "packages have been installed in your
system. Please click next to configure it."
+ FrmInstallSys.tlCurrPkg.Text = "packages have been Installed. Please
click next to move on to System Configuration."
WITH FMain
.btQuit.Enabled = TRUE
.btQuit.ForeColor = Color.Black
Modified: branches/iVL/MdlPartSel.module
==============================================================================
--- branches/iVL/MdlPartSel.module (original)
+++ branches/iVL/MdlPartSel.module Mon Aug 25 21:28:18 2008
@@ -171,12 +171,12 @@
.y = y
.ReadOnly = TRUE
.Width = tl.Width
- .Add("Do not format")
.Add("XFS")
.Add("ReiserFS")
.Add("Ext2")
.Add("Ext3")
.Add("JFS")
+ .Add("Do not format")
'.Add("swap")
IF InStr(Trim(FrmSelISO.lstInstallableImg.Text), .Tag)
THEN
.Enabled = FALSE
Modified: branches/iVL/installer.gambas
==============================================================================
Binary files. No diff available.
|