- net-boot/loop_rp.bat: GO.BAT-style netnub loop for RP (mirror of loop.bat, retargeted to rpl4opt). deploy/net_rp.conf.tmpl now calls it instead of the single-shot netnub + DOS pause -- the deployable runs in a loop until the supervisor kills DOSBox (per operator: no single-shot in the product). - DLL closure resolved: dosbox-x.exe is a 182MB STATIC build -- import table is only Windows system DLLs, delay-import table empty, libpng/SDL/zlib embedded. Nothing to bundle; wpcap.dll comes from the Npcap install. package.ps1's "no DLLs" case is now informational, and the plan/README note the static build. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
60 lines
1.4 KiB
Cheetah
60 lines
1.4 KiB
Cheetah
# DEPLOY TEMPLATE -- rendered to net_rp.conf by deploy/configure.ps1 at install.
|
|
# Tokens (filled by postinstall): @@ROOT@@ = package dir (C:\games\<folder>),
|
|
# @@REALNIC@@ = this pod's NIC GUID fragment, @@MACADDR@@ = stable derived MAC.
|
|
# Red Planet 4.10, networked pod boot (console pushes the mission egg over TCP).
|
|
# Loops netnub (loop_rp.bat) so the pod stays connected + picks up missions;
|
|
# runs until the supervisor (pod-launch) kills DOSBox. No single-shot in deploy.
|
|
[sdl]
|
|
output=opengl
|
|
priority=highest,highest
|
|
[dosbox]
|
|
memsize=32
|
|
machine=svga_s3
|
|
[cpu]
|
|
core=dynamic
|
|
cputype=pentium
|
|
cycles=max
|
|
[ne2000]
|
|
ne2000=true
|
|
nicbase=340
|
|
nicirq=10
|
|
macaddr=@@MACADDR@@
|
|
backend=pcap
|
|
[ethernet, pcap]
|
|
realnic=@@REALNIC@@
|
|
[sblaster]
|
|
sbtype=sb16
|
|
sbbase=220
|
|
irq=5
|
|
dma=1
|
|
hdma=5
|
|
[mixer]
|
|
rate=44100
|
|
blocksize=1024
|
|
prebuffer=60
|
|
[serial]
|
|
serial1=directserial realport:COM1 rxpollus:100 rxburst:16
|
|
serial2=directserial realport:COM2
|
|
[autoexec]
|
|
mount c "@@ROOT@@\ALPHA_1"
|
|
mount d "@@ROOT@@\net-boot"
|
|
d:
|
|
echo === loading NE2000 packet-driver stack (pcap/bridge, port 340) ===
|
|
d:\lsl
|
|
d:\ne2000
|
|
d:\odipkt
|
|
c:
|
|
cd \rel410\rp
|
|
set VIDEOFORMAT=svga
|
|
set BLASTER=A220 I5 D1 H5 P330 T6
|
|
c:\sb16\diagnose /s
|
|
set BLASTER=A240 I7 D3 H6 P300 T6
|
|
c:\sb16\diagnose /s
|
|
set BLASTER=A220 I5 D1 H5 P330 T6
|
|
set TEMP=c:\
|
|
set HEAPSIZE=15000000
|
|
set L4GAUGE=640x480x16
|
|
call setenv.bat r f s p
|
|
echo === entering netnub loop (waits for console missions; supervisor kills to stop) ===
|
|
call d:\loop_rp.bat
|