Author: M0...@gm...
Date: Thu Dec 18 14:31:18 2008
New Revision: 431
Modified:
branches/iVL/.project
branches/iVL/MdlInstallCustom.module
branches/iVL/MdlInstallSys.module
branches/iVL/MdlLilo.module
branches/iVL/installer.gambas
Log:
updated binary, fixed shell typos
Modified: branches/iVL/.project
==============================================================================
--- branches/iVL/.project (original)
+++ branches/iVL/.project Thu Dec 18 14:31:18 2008
@@ -2,7 +2,7 @@
# Compiled with Gambas 2.9.0
Title=VectorLinux Installer
Startup=MdlCore
-Version=0.1.21
+Version=0.1.22
Library=gb.gtk
Library=gb.form
Library=gb.debug
Modified: branches/iVL/MdlInstallCustom.module
==============================================================================
--- branches/iVL/MdlInstallCustom.module (original)
+++ branches/iVL/MdlInstallCustom.module Thu Dec 18 14:31:18 2008
@@ -440,7 +440,8 @@
sDump = ""
- SHELL "echo \"\" > /tmp/installdump" WAIT
+ 'SHELL "echo \"\" > /tmp/installdump" WAIT
+ EXEC ["rm", "/tmp/installdump"] WAIT
sErr = ""
SHELL "cat " & ClsGlobal.sSourceMnt &/ "veclinux" &/ "SETUP.CONF |
grep " & File.Name(sPackagePath) & " | cut -f 2 -d :" TO vSize
Modified: branches/iVL/MdlInstallSys.module
==============================================================================
--- branches/iVL/MdlInstallSys.module (original)
+++ branches/iVL/MdlInstallSys.module Thu Dec 18 14:31:18 2008
@@ -413,7 +413,7 @@
INC ClsGlobal.iPkgNum
'ME.PACKAGE_INSTALL(ClsGlobal.sSourceMnt &/ "packages"
&/ sPkgPath &/ sPkgName)
' move the process here locally
- SHELL "echo \"\" /tmp/installdump" WAIT
+ SHELL "echo \"\" > /tmp/installdump" WAIT
'hproc = SHELL "installpkg " &
ClsGlobal.sSourceMnt &/ "packages" &/ sPkgPath &/ sPkgName & " -R " &
ClsGlobal.sTargetMnt & " 2> /tmp/installdump"
hproc = EXEC ["installpkg", ClsGlobal.sSourceMnt
&/ "packages" &/ sPkgPath &/ sPkgName, "-R", ClsGlobal.sTargetMnt]
WAIT
Modified: branches/iVL/MdlLilo.module
==============================================================================
--- branches/iVL/MdlLilo.module (original)
+++ branches/iVL/MdlLilo.module Thu Dec 18 14:31:18 2008
@@ -38,7 +38,7 @@
IF Exist("/usr/bin/ms-sys") THEN
'dd if=/dev/hda of=/boot/MBR.$( date '+%m%d%y') bs=512 count=1
- SHELL "dd if=/dev/" & Trim(sTarget) & "
of=/mnt/target/boot/MBR.$( date +\'%m%d%y\') bs=512 count=1" WAIT
+ SHELL "dd if=/" & Trim(sTarget) & " of=/mnt/target/boot/MBR.$(
date +\'%m%d%y\') bs=512 count=1" WAIT
SHELL "/usr/bin/ms-sys -z " & Trim(sTarget) WAIT
ELSE
Modified: branches/iVL/installer.gambas
==============================================================================
Binary files. No diff available.
|