Remove ACWords.DATA and Home/ folder from AUTO.ISO.

This commit is contained in:
TomAwezome 2022-04-01 14:21:45 -04:00
parent 675b9c1f42
commit 6f7288e8ed
4 changed files with 13 additions and 9 deletions

Binary file not shown.

View file

@ -19,22 +19,27 @@ U0 MakeMyISO(U8 *_out_iso_filename)
In(STD_DISTRO_DVD_CONFIG);
BootDVDIns;
Copy("/*","/Distro");
Copy("/*", "/Distro");
DirMake("/Distro" BOOT_DIR);
Move(BOOT_DIR_DVD_KERNEL_ZXE, "/Distro" BOOT_DIR_KERNEL_ZXE);
CopyTree("/Home", "/Distro/Home");
Del("/Distro/Home/Registry.ZC");
DirMake("/Distro/Home");
CopyTree("/System", "/Distro/System");
Del("/Distro/System/AutoComplete/ACDefs.DATA");
Del("/Distro/System/AutoComplete/ACWords.DATA");
CopyTree("/Compiler", "/Distro/Compiler");
CopyTree("/Kernel", "/Distro/Kernel");
CopyTree("/Misc", "/Distro/Misc");
DirMake("/Distro/Doc");
Copy("/Doc/EdPullDown.DD", "/Distro/Doc/EdPullDown.DD");
Copy("/Doc/Tips.DD", "/Distro/Doc/Tips.DD");
Copy("/Misc/Auto/Once.ZC", "/Distro/Once.ZC");
Copy("/Misc/Auto/HomeSys.ZC", "/Distro/HomeSys.ZC");
Del("/Distro/Misc/PCIDevices.DD");
Del("/Distro/Misc/Bible.TXT");
Del("/Distro/Misc/Clementine.TXT");

View file

@ -49,7 +49,6 @@ U0 VMInstallWiz()
CTask *task;
I64 i, atapi_port = -1, ata_port = -1;
CAHCIPort *port;
U8 *in_str;
task = User;
TaskWait(task);
@ -104,7 +103,7 @@ U0 VMInstallWiz()
Kill(task);
}
Bool DoInstall(Bool prompt_reboot)
Bool DoInstall()
{
I64 res = FALSE, vm_install = TRUE;
@ -117,11 +116,11 @@ Bool DoInstall(Bool prompt_reboot)
return res;
}
Bool OSInstall(Bool prompt_reboot=TRUE)
Bool OSInstall()
{
return DoInstall(prompt_reboot);
return DoInstall();
}
#if __CMD_LINE__
OSInstall(TRUE);
OSInstall();
#endif

View file

@ -15,7 +15,7 @@ U0 LoadDocDefines()
//$LK,"DD_BOOT_HIGH_LOC_DVD",A="FF:::/System/Boot/BootDVD.ZC,DD_BOOT_HIGH_LOC_DVD"$
$TR,"LineRep"$
$ID,2$DefinePrint("DD_ZEALOS_LOC","97,299");
$ID,2$DefinePrint("DD_ZEALOS_LOC","97,274");
$ID,-2$
DefinePrint("DD_MP_VECT", "%08X", MP_VECT_ADDR);
DefinePrint("DD_MP_VECT_END", "%08X", MP_VECT_ADDR + COREAP_16BIT_INIT_END - COREAP_16BIT_INIT - 1);