Un-ignored: the dev drive is the ground truth the restoration and emulator work constantly reference (DPL3/LIBDPL + VRENDER i860 renderer source, BT/RP live+dev game trees, VGL_LABS pod boot, scene/audio content). Kept in-repo for the pod-owner community. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
72 lines
2.3 KiB
Batchfile
72 lines
2.3 KiB
Batchfile
rem
|
|
rem *** All boot disks need this stuff ***
|
|
rem
|
|
mkdir a:\vgl_labs
|
|
mkdir a:\vgl_labs\thispod
|
|
rem
|
|
rem *** This is the setup.bat file we are using for this release
|
|
rem
|
|
copy c:\vgl_labs\REL1_20.BAT a:\vgl_labs
|
|
rem
|
|
rem *** These are the required batch files
|
|
rem
|
|
copy c:\vgl_labs\LABS1.BAT a:\vgl_labs
|
|
copy c:\vgl_labs\LABS2.BAT a:\vgl_labs
|
|
copy c:\vgl_labs\LABS3.BAT a:\vgl_labs
|
|
copy c:\vgl_labs\CR a:\vgl_labs
|
|
copy c:\vgl_labs\GO.BAT a:\vgl_labs
|
|
rem
|
|
rem *** These are some optional batch files that may be useful for ***
|
|
rem *** setup and debugging of a pod if you have a keyboard ***
|
|
rem
|
|
copy c:\vgl_labs\LABUP.BAT a:\vgl_labs
|
|
copy c:\vgl_labs\RP.BAT a:\vgl_labs
|
|
copy c:\vgl_labs\BT.BAT a:\vgl_labs
|
|
copy c:\vgl_labs\CLEARLOG.BAT a:\vgl_labs
|
|
copy c:\vgl_labs\CAMERA.BAT a:\vgl_labs
|
|
copy c:\vgl_labs\REVIEW.BAT a:\vgl_labs
|
|
copy c:\vgl_labs\NETON.BAT a:\vgl_labs
|
|
copy c:\vgl_labs\NETOFF.BAT a:\vgl_labs
|
|
copy c:\vgl_labs\NTON.BAT a:\vgl_labs
|
|
copy c:\vgl_labs\NTOFF.BAT a:\vgl_labs
|
|
rem
|
|
rem *** This file handles the installation to the pod's hard drive
|
|
rem
|
|
copy c:\vgl_labs\loadpod.POD a:\vgl_labs\thispod\loadpod.bat
|
|
rem
|
|
rem *** These are the standard config.sys and autoexec.bat files
|
|
rem
|
|
copy c:\vgl_labs\autoexec.POD a:\vgl_labs\thispod\autoexec.bat
|
|
copy c:\vgl_labs\config.POD a:\vgl_labs\thispod\config.sys
|
|
copy c:\vgl_labs\autoexec.POD a:\autoexec.bat
|
|
copy c:\vgl_labs\config.POD a:\config.sys
|
|
echo a:\vgl_labs\thispod\loadpod.bat>>a:\autoexec.bat
|
|
echo c:\vgl_labs\thispod\bootpod.bat>>a:\vgl_labs\thispod\autoexec.bat
|
|
rem
|
|
rem *** One of several BOOTPOD.BAT files is copied over depending on
|
|
rem *** what type of install disk this is making first we copy over the
|
|
rem *** name of the release file, then the right setup.
|
|
rem
|
|
echo CALL REL1_20.BAT>a:\vgl_labs\thispod\bootpod.bat
|
|
|
|
if "%1"=="pod" goto pod
|
|
if "%1"=="ntscreview" goto ntscreview
|
|
if "%1"=="svgareview" goto svgareview
|
|
echo You must type MAKEBOOT followed by pod, ntscreview, or svgareview
|
|
goto exit
|
|
|
|
:pod
|
|
type c:\vgl_labs\bootpod.1>>a:\vgl_labs\thispod\bootpod.bat
|
|
goto step2
|
|
|
|
:ntscreview
|
|
type c:\vgl_labs\bootpod.2>>a:\vgl_labs\thispod\bootpod.bat
|
|
goto step2
|
|
|
|
:svgareview
|
|
type c:\vgl_labs\bootpod.3>>a:\vgl_labs\thispod\bootpod.bat
|
|
goto step2
|
|
|
|
:step2
|
|
:exit
|