Author: M0...@gm...
Date: Fri Aug 1 06:13:59 2008
New Revision: 97
Modified:
branches/iVL/.lang/MdlPartSel.pot
branches/iVL/FrmLilo.class
branches/iVL/MdlInstallSys.module
branches/iVL/MdlPartSel.module
Log:
- Fixed problem in partitioning phase where the installer was shooting
out a /home partition when only a / was selected.
Modified: branches/iVL/.lang/MdlPartSel.pot
==============================================================================
--- branches/iVL/.lang/MdlPartSel.pot (original)
+++ branches/iVL/.lang/MdlPartSel.pot Fri Aug 1 06:13:59 2008
@@ -1,4 +1,4 @@
-# /root/svn-installer2/MdlPartSel.module
+# /home/moises/area-51/projects/installer/MdlPartSel.module
# Generated by Gambas compiler
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
Modified: branches/iVL/FrmLilo.class
==============================================================================
--- branches/iVL/FrmLilo.class (original)
+++ branches/iVL/FrmLilo.class Fri Aug 1 06:13:59 2008
@@ -1,2 +1,3 @@
' Gambas class file
+
Modified: branches/iVL/MdlInstallSys.module
==============================================================================
--- branches/iVL/MdlInstallSys.module (original)
+++ branches/iVL/MdlInstallSys.module Fri Aug 1 06:13:59 2008
@@ -173,35 +173,13 @@
sFstab = sFstab & "\n"
' Wheewww!... that's the whole fstab there... Please fix the win partitions
- 'Message(sFstab)
-
- ' IF NOT ClsGlobal.sTargetMnt OR ClsGlobal.sTargetMnt = "" THEN
- ' ClsGlobal.sTargetMnt = "/mnt/target"
- ' END IF
-
- ';Message(ClsGlobal.sTargetMnt &/ "etc")
+
' now save the file to /etc/fstab
IF Exist(ClsGlobal.sTargetMnt &/ "etc") = FALSE THEN
MKDIR ClsGlobal.sTargetMnt &/ "etc"
END IF
File.Save(ClsGlobal.sTargetMnt &/ "etc" &/ "fstab", SConv(sFstab))
- 'CATCH
- 'PRINT ERROR
- '.RETURN 1
- 'RETURN 0
- ' IF ClsPkgSel.bCustom = TRUE THEN
- ' ' perform custom install
- ' MdlInstallCustom.PERFORM_CUSTOM_INSTALL()
- ' ELSE
- ' FrmInstallSys.tlCurrPkg.Text = "Vectorlinux is now
installing ... Please wait"
- ' ME.PERFORM_FULL_INSTALL()
- 'ME.INSTALL_CONFIG_PACKAGES
- 're-direct to packages for now
- 'FrmInstallSys.tlCurrPkg.Text = "Installing Additional
software... Please wait"
- 'ME.INSTALL_REQUIRED_PACKAGES()
- 'ME.INSTALL_PACKAGES()
-
- ' END IF
+
END
Modified: branches/iVL/MdlPartSel.module
==============================================================================
--- branches/iVL/MdlPartSel.module (original)
+++ branches/iVL/MdlPartSel.module Fri Aug 1 06:13:59 2008
@@ -281,7 +281,8 @@
SELECT CASE LAST.text
CASE "/"
ClsPartSel.sRoot = LCase(LAST.tag)
-
+
+ CASE "/home"
ClsPartSel.sHome = LCase(LAST.tag)
CASE "/usr"
|