Subversion Repositories SvarDOS

Rev

Rev 2167 | Rev 2169 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
134 mv_fox 1
#!/bin/bash
11 mv_fox 2
#
180 mateuszvis 3
# SvarDOS build script
791 mateusz.vi 4
# http://svardos.org
1698 mateusz.vi 5
#
1670 mateusz.vi 6
# Copyright (C) 2016-2024 Mateusz Viste
148 mv_fox 7
#
847 mateusz.vi 8
# This script builds floppy and CD images. It should be executed each time that
852 mateusz.vi 9
# a CORE package has been modified or the build script changed. This is usually
10
# done by the cron.sh script, itself called by a cron job.
11 mv_fox 11
#
854 mateusz.vi 12
# usage: ./build.sh outputdir buildver [noclean] > logfile
194 mateuszvis 13
#
2 mv_fox 14
 
11 mv_fox 15
### parameters block starts here ############################################
16
 
632 mateusz.vi 17
REPOROOT=`realpath ./packages`
1261 mateusz.vi 18
REPOROOTCORE=`realpath ./packages-core`
148 mv_fox 19
CUSTFILES=`realpath ./files`
2 mv_fox 20
 
171 mv_fox 21
GENISOIMAGE=''    # can be mkisofs, genisoimage or empty for autodetection
22
 
11 mv_fox 23
### parameters block ends here ##############################################
24
 
854 mateusz.vi 25
# look for mandatory output dir and build id
26
if [ "x$2" == "x" ] ; then
27
  echo "usage: build.sh outputdir buildver [noclean]"
836 mateusz.vi 28
  exit 1
29
fi
854 mateusz.vi 30
CURDATE="$2"
31
PUBDIR=`realpath "$1"`
836 mateusz.vi 32
 
33
CDROOT="$PUBDIR/tmp_cdroot.build"
34
FLOPROOT="$PUBDIR/tmp_floproot.build"
35
 
36
 
171 mv_fox 37
# auto-detect whether to use mkisofs or genisoimage
38
 
39
if [ "x$GENISOIMAGE" == "x" ] ; then
180 mateuszvis 40
mkisofs --help 2> /dev/null
171 mv_fox 41
if [ $? -eq 0 ] ; then
42
  GENISOIMAGE='mkisofs'
43
fi
44
fi
45
 
46
if [ "x$GENISOIMAGE" == "x" ] ; then
180 mateuszvis 47
genisoimage --help 2> /dev/null
171 mv_fox 48
if [ $? -eq 0 ] ; then
49
  GENISOIMAGE='genisoimage'
50
fi
51
fi
52
 
53
if [ "x$GENISOIMAGE" == "x" ] ; then
54
  echo "ERROR: neither genisoimage nor mkisofs was found on this system"
55
  exit 1
56
fi
57
 
180 mateuszvis 58
# abort if anything fails
59
set -e
134 mv_fox 60
 
61
 
1920 mateusz.vi 62
# list of packages to be part of CORE (always installed), sort them from
63
# biggest to smallest to try utilizing the floppy disk space as efficiently
64
# as possible. -L means 'dereference', ie. look at the filesize of the target
65
# file, not the symlink.
66
COREPKGS=`ls -1LS 'packages-core' | grep -o '^[a-zA-Z0-9]*'`
192 mateuszvis 67
 
68
 
69
 
246 mateuszvis 70
# prepares image for floppy sets of:
71
# $1 cylinders
72
# $2 heads (sides)
73
# $3 sectors per track
74
# $4 size
849 mateusz.vi 75
# $5 working directory (for temporary files etc)
1527 mateusz.vi 76
# $6 name of the set (eg. "1440k" or "1440k-EN")
1750 mateusz.vi 77
# $7 list of packages
78
# $8 where to put a copy of the image (optional)
194 mateuszvis 79
function prep_flop {
1527 mateusz.vi 80
  WORKDIR="$5/$6"
1750 mateusz.vi 81
  LIST=$7
2168 mateusz.vi 82
  DISKPREFIX="svdos-$6-disk"
849 mateusz.vi 83
  mkdir "$WORKDIR"
2168 mateusz.vi 84
  mformat -C -t $1 -h $2 -s $3 -v $CURDATE -B "$CUSTFILES/floppy.mbr" -i "$WORKDIR/$DISKPREFIX-1.img"
2167 mateusz.vi 85
 
86
  # copy basic files (installer, startup files...)
2168 mateusz.vi 87
  mcopy -sQm -i "$WORKDIR/$DISKPREFIX-1.img" "$FLOPROOT/"* ::/
196 mateuszvis 88
 
2167 mateusz.vi 89
  # generate the INSTALL.LST file
90
  for pkg in $7 ; do
91
    echo "$pkg" >> "$WORKDIR/install.lst"
92
  done
2168 mateusz.vi 93
  mcopy -i "$WORKDIR/$DISKPREFIX-1.img" "$WORKDIR/install.lst" ::/
2167 mateusz.vi 94
  rm "$WORKDIR/install.lst"
95
 
96
  # now populate the floppies with *.svp packages
196 mateuszvis 97
  curdisk=1
1127 mateusz.vi 98
 
99
  while [ ! -z "$LIST" ] ; do
100
 
101
    unset PENDING
102
    for p in $LIST ; do
103
      # if copy fails, then probably the floppy is full - try other packages
104
      # but remember all that fails so they will be retried on a new floppy
2168 mateusz.vi 105
      if ! mcopy -mi "$WORKDIR/$DISKPREFIX-$curdisk.img" "$CDROOT/$p.svp" ::/ ; then
1127 mateusz.vi 106
        PENDING="$PENDING $p"
107
      fi
108
    done
109
 
110
    LIST="$PENDING"
111
    # if there are any pending items, then create a new floppy and try pushing pending packages to it
112
    if [ ! -z "$PENDING" ] ; then
196 mateuszvis 113
      curdisk=$((curdisk+1))
2168 mateusz.vi 114
      mformat -C -t $1 -h $2 -s $3 -v SVARDOS -i "$WORKDIR/$DISKPREFIX-$curdisk.img"
196 mateuszvis 115
    fi
1127 mateusz.vi 116
 
194 mateuszvis 117
  done
196 mateuszvis 118
 
205 mateuszvis 119
  # add a short readme
849 mateusz.vi 120
  echo "This directory contains a set of $curdisk floppy images of the SvarDOS distribution in the $4 KB floppy format." > "$WORKDIR/readme.txt"
121
  echo "" >> "$WORKDIR/readme.txt"
122
  echo "These images are raw floppy disk dumps. To write them on an actual floppy disk, you have to use a low-level sector copying tool, like dd." >> "$WORKDIR/readme.txt"
123
  echo "" >> "$WORKDIR/readme.txt"
862 mateusz.vi 124
  echo "Latest SvarDOS version is available on the project's homepage: http://svardos.org" >> "$WORKDIR/readme.txt"
205 mateuszvis 125
 
849 mateusz.vi 126
  unix2dos "$WORKDIR/readme.txt"
205 mateuszvis 127
 
2168 mateusz.vi 128
  # make a copy of the (first) image, if requested
1750 mateusz.vi 129
  if [ "x$8" != "x" ] ; then
2168 mateusz.vi 130
    cp "$WORKDIR/$DISKPREFIX-1.img" $8
279 mateuszvis 131
  fi
132
 
196 mateuszvis 133
  # zip the images (and remove them at the same time)
1527 mateusz.vi 134
  zip -9 -rmj "$PUBDIR/svardos-$CURDATE-floppy-$6.zip" "$WORKDIR"/*
196 mateuszvis 135
 
136
  # clean up
849 mateusz.vi 137
  rmdir "$WORKDIR"
194 mateuszvis 138
}
139
 
140
 
134 mv_fox 141
### actual code flow starts here ############################################
142
 
148 mv_fox 143
# remember where I am, so I can get back here once all is done
11 mv_fox 144
origdir=`pwd`
145
 
836 mateusz.vi 146
echo "###############################################################################"
147
echo " STARTING BUILD $CURDATE"
148
echo "###############################################################################"
149
echo "dest dir: $PUBDIR"
150
echo "current time is `date` and it's a beautiful day somewhere in the world"
151
echo
152
 
189 mateuszvis 153
mkdir "$CDROOT"
192 mateuszvis 154
mkdir "$FLOPROOT"
189 mateuszvis 155
 
192 mateuszvis 156
# add CORE packages to CDROOT + create the list of packages on floppy
195 mateuszvis 157
for pkg in $COREPKGS ; do
1261 mateusz.vi 158
  cp "$REPOROOTCORE/$pkg.svp" "$CDROOT/"
192 mateuszvis 159
done
160
 
1750 mateusz.vi 161
# add some extra packages to CDROOT but not in the list of packages to install
162
cp "$REPOROOT/pcntpk.svp" "$CDROOT/"
163
cp "$REPOROOT/videcdd-2.14.svp" "$CDROOT/videcdd.svp"
300 mateuszvis 164
 
1750 mateusz.vi 165
#
300 mateuszvis 166
 
1750 mateusz.vi 167
 
836 mateusz.vi 168
echo
169
echo "### Populating the floppy root at $FLOPROOT"
170
echo
171
 
862 mateusz.vi 172
# prepare the content of the boot (install) floppy, unzipping everything
173
# in lowercase (-L) to avoid any case mismatching later in the build process
192 mateuszvis 174
cp -r "$CUSTFILES/floppy/"* "$FLOPROOT/"
1922 mateusz.vi 175
unzip -CLj "$REPOROOTCORE/cpidos.svp" 'cpi/ega.cpx' -d "$FLOPROOT/"
1925 mateusz.vi 176
unzip -CLj "$REPOROOTCORE/cpidos.svp" 'cpi/ega3.cpx' -d "$FLOPROOT/"
177
unzip -CLj "$REPOROOTCORE/cpidos.svp" 'cpi/ega6.cpx' -d "$FLOPROOT/"
178
unzip -CLj "$REPOROOTCORE/cpidos.svp" 'cpi/ega9.cpx' -d "$FLOPROOT/"
1922 mateusz.vi 179
unzip -CLj "$REPOROOTCORE/cpidos.svp" 'cpi/ega10.cpx' -d "$FLOPROOT/"
1261 mateusz.vi 180
unzip -CLj "$REPOROOTCORE/svarcom.svp" command.com -d "$FLOPROOT/"
181
unzip -CLj "$REPOROOTCORE/display.svp" bin/display.exe -d "$FLOPROOT/"
182
unzip -CLj "$REPOROOTCORE/fdapm.svp" bin/fdapm.com -d "$FLOPROOT/"
1478 mateusz.vi 183
unzip -CLj "$REPOROOTCORE/fdisk.svp" bin/fdisk.exe -d "$FLOPROOT/"
1261 mateusz.vi 184
unzip -CLj "$REPOROOTCORE/format.svp" bin/format.exe -d "$FLOPROOT/"
1833 mateusz.vi 185
unzip -CLj "$REPOROOTCORE/kernledr.svp" kernel.sys -d "$FLOPROOT/"
1261 mateusz.vi 186
unzip -CLj "$REPOROOTCORE/mem.svp" bin/mem.exe -d "$FLOPROOT/"
187
unzip -CLj "$REPOROOTCORE/mode.svp" bin/mode.com -d "$FLOPROOT/"
1499 mateusz.vi 188
unzip -CLj "$REPOROOTCORE/more.svp" bin/more.com -d "$FLOPROOT/"
1261 mateusz.vi 189
unzip -CLj "$REPOROOTCORE/pkg.svp" bin/pkg.exe -d "$FLOPROOT/"
1465 mateusz.vi 190
unzip -CLj "$REPOROOTCORE/sved.svp" bin/sved.com -d "$FLOPROOT/"
1809 bernd.boec 191
unzip -CLj "$REPOROOTCORE/sys.svp" bin/sys.com -d "$FLOPROOT/"
192 mateuszvis 192
 
867 mateusz.vi 193
# generate a simple autoexec.bat file
194
echo '@ECHO OFF' > "$FLOPROOT/autoexec.bat"
195
echo '' >> "$FLOPROOT/autoexec.bat"
196
echo 'REM Load DISPLAY driver if present' >> "$FLOPROOT/autoexec.bat"
197
echo 'IF EXIST DISPLAY.EXE DISPLAY CON=(EGA,,1)' >> "$FLOPROOT/autoexec.bat"
198
echo '' >> "$FLOPROOT/autoexec.bat"
1937 mateusz.vi 199
echo 'FDAPM ADV:REG' >> "$FLOPROOT/autoexec.bat"
867 mateusz.vi 200
echo '' >> "$FLOPROOT/autoexec.bat"
201
echo 'ECHO.' >> "$FLOPROOT/autoexec.bat"
202
echo 'ECHO  ********************' >> "$FLOPROOT/autoexec.bat"
203
echo 'ECHO   WELCOME TO SVARDOS' >> "$FLOPROOT/autoexec.bat"
204
echo 'ECHO  ********************' >> "$FLOPROOT/autoexec.bat"
205
echo "ECHO  build: $CURDATE" >> "$FLOPROOT/autoexec.bat"
206
echo 'ECHO.' >> "$FLOPROOT/autoexec.bat"
207
echo '' >> "$FLOPROOT/autoexec.bat"
1671 mateusz.vi 208
echo "INSTALL" >> "$FLOPROOT/autoexec.bat"
867 mateusz.vi 209
unix2dos "$FLOPROOT/autoexec.bat"
862 mateusz.vi 210
 
867 mateusz.vi 211
 
836 mateusz.vi 212
echo
862 mateusz.vi 213
echo "### Computing the USB image"
214
echo
215
 
216
# prepare the USB bootable image
217
USBIMG=$PUBDIR/svardos-usb.img
218
cp files/boot-svardos.img $USBIMG
1808 bttr 219
mlabel -i "$USBIMG@@32256" ::$CURDATE
862 mateusz.vi 220
mcopy -sQm -i "$USBIMG@@32256" "$FLOPROOT/"* ::/
1750 mateusz.vi 221
for p in $COREPKGS ; do
862 mateusz.vi 222
  mcopy -mi "$USBIMG@@32256" "$CDROOT/$p.svp" ::/
223
done
224
 
225
# compress the USB image
226
zip -mj9 "$PUBDIR/svardos-$CURDATE-usb.zip" "$USBIMG"
227
 
228
 
229
echo
836 mateusz.vi 230
echo "### Creating floppy images"
231
echo
1212 mateusz.vi 232
echo "You might notice a lot of DISK FULL warnings below. Do not worry, these"
233
echo "are expected and are perfectly normal. It is a side effect of trying to"
234
echo "fit as many packages as possible on the floppy sets."
235
echo
836 mateusz.vi 236
 
194 mateuszvis 237
# build the boot (CD) floppy image
192 mateuszvis 238
export MTOOLS_NO_VFAT=1
239
 
246 mateuszvis 240
# prepare images for floppies in different sizes (args are C H S SIZE)
1750 mateusz.vi 241
prep_flop 80 2 36 2880 "$PUBDIR" "2.88M" "$COREPKGS pcntpk videcdd" "$CDROOT/boot.img"
242
prep_flop 80 2 18 1440 "$PUBDIR" "1.44M" "$COREPKGS pcntpk"
243
prep_flop 80 2 15 1200 "$PUBDIR" "1.2M" "$COREPKGS"
244
prep_flop 80 2  9  720 "$PUBDIR" "720K" "$COREPKGS"
1926 mateusz.vi 245
prep_flop 40 2  9  360 "$PUBDIR" "360K" "$COREPKGS"
194 mateuszvis 246
 
862 mateusz.vi 247
 
836 mateusz.vi 248
echo
249
echo "### Computing DOSEMU.zip"
250
echo
251
 
321 mateuszvis 252
# prepare the DOSEMU boot zip
836 mateusz.vi 253
DOSEMUDIR="$PUBDIR/tmp_dosemu-prep-files.build"
321 mateuszvis 254
mkdir "$DOSEMUDIR"
322 mateuszvis 255
# INSTALL.BAT
624 mateuszvis 256
echo 'IF NOT EXIST C:\TEMP\NUL MKDIR C:\TEMP' >> "$DOSEMUDIR/install.bat"
322 mateuszvis 257
echo 'mkdir %DOSDIR%' >> "$DOSEMUDIR/install.bat"
258
echo 'mkdir %DOSDIR%\cfg' >> "$DOSEMUDIR/install.bat"
259
echo 'ECHO # pkg config file - specifies locations where packages should be installed >> %DOSDIR%\cfg\pkg.cfg' >> "$DOSEMUDIR/install.bat"
1670 mateusz.vi 260
echo 'ECHO DIR BIN %DOSDIR% >> %DOSDIR%\cfg\pkg.cfg' >> "$DOSEMUDIR/install.bat"
322 mateuszvis 261
echo 'ECHO DIR PROGS C:\ >> %DOSDIR%\cfg\pkg.cfg' >> "$DOSEMUDIR/install.bat"
262
echo 'ECHO DIR GAMES C:\ >> %DOSDIR%\cfg\pkg.cfg' >> "$DOSEMUDIR/install.bat"
263
echo 'ECHO DIR DRIVERS C:\DRIVERS\ >> %DOSDIR%\cfg\pkg.cfg' >> "$DOSEMUDIR/install.bat"
264
echo 'ECHO DIR DEVEL C:\DEVEL\ >> %DOSDIR%\cfg\pkg.cfg' >> "$DOSEMUDIR/install.bat"
321 mateuszvis 265
for p in $COREPKGS ; do
700 mateusz.vi 266
  cp "$CDROOT/$p.svp" "$DOSEMUDIR/"
267
  echo "pkg install $p.svp" >> "$DOSEMUDIR/install.bat"
268
  echo "del $p.svp" >> "$DOSEMUDIR/install.bat"
321 mateuszvis 269
done
322 mateuszvis 270
echo 'ECHO my_ip = dhcp >> %DOSDIR%\CFG\WATTCP.CFG' >> "$DOSEMUDIR/install.bat"
271
echo 'del pkg.exe' >> "$DOSEMUDIR/install.bat"
1103 mateusz.vi 272
echo 'DEL C:\CONFIG.SYS' >> "$DOSEMUDIR/install.bat"
273
echo 'COPY C:\CONFIG.NEW C:\CONFIG.SYS' >> "$DOSEMUDIR/install.bat"
274
echo 'DEL C:\CONFIG.NEW' >> "$DOSEMUDIR/install.bat"
275
echo 'SET COMSPEC=C:\COMMAND.COM' >> "$DOSEMUDIR/install.bat"
276
echo 'DEL C:\CMD.COM' >> "$DOSEMUDIR/install.bat"
322 mateuszvis 277
echo 'ECHO.' >> "$DOSEMUDIR/install.bat"
278
echo 'ECHO -------------------------' >> "$DOSEMUDIR/install.bat"
1103 mateusz.vi 279
echo 'ECHO  SVARDOS SETUP COMPLETED' >> "$DOSEMUDIR/install.bat"
280
echo 'ECHO   PLEASE RESTART DOSEMU' >> "$DOSEMUDIR/install.bat"
322 mateuszvis 281
echo 'ECHO -------------------------' >> "$DOSEMUDIR/install.bat"
282
echo 'ECHO.' >> "$DOSEMUDIR/install.bat"
1833 mateusz.vi 283
unzip -Cj "$REPOROOTCORE/kernledr.svp" kernel.sys -d "$DOSEMUDIR/"
1261 mateusz.vi 284
unzip -CLj "$REPOROOTCORE/svarcom.svp" command.com -d "$DOSEMUDIR/"
1103 mateusz.vi 285
mv "$DOSEMUDIR/command.com" "$DOSEMUDIR/cmd.com"
1261 mateusz.vi 286
unzip -Cj "$REPOROOTCORE/pkg.svp" bin/pkg.exe -d "$DOSEMUDIR/"
322 mateuszvis 287
# CONFIG.SYS
1103 mateusz.vi 288
echo 'FILES=25' >> "$DOSEMUDIR/config.sys"
322 mateuszvis 289
echo 'DOS=HIGH,UMB' >> "$DOSEMUDIR/config.sys"
326 mateuszvis 290
echo 'DOSDATA=UMB' >> "$DOSEMUDIR/config.sys"
325 mateuszvis 291
echo 'DEVICE=D:\dosemu\emufs.sys' >> "$DOSEMUDIR/config.sys"
322 mateuszvis 292
echo 'DEVICE=D:\dosemu\umb.sys' >> "$DOSEMUDIR/config.sys"
325 mateuszvis 293
echo 'DEVICEHIGH=D:\dosemu\ems.sys' >> "$DOSEMUDIR/config.sys"
322 mateuszvis 294
echo 'INSTALL=D:\dosemu\emufs.com' >> "$DOSEMUDIR/config.sys"
1103 mateusz.vi 295
cp "$DOSEMUDIR/config.sys" "$DOSEMUDIR/config.new"
296
echo 'SHELL=C:\CMD.COM /P' >> "$DOSEMUDIR/config.sys"
297
echo 'SHELL=C:\COMMAND.COM /P' >> "$DOSEMUDIR/config.new"
322 mateuszvis 298
# AUTOEXEC.BAT
321 mateuszvis 299
echo "@ECHO OFF" >> "$DOSEMUDIR/autoexec.bat"
322 mateuszvis 300
echo 'SET DOSDIR=C:\SVARDOS' >> "$DOSEMUDIR/autoexec.bat"
301
echo 'SET WATTCP.CFG=%DOSDIR%\CFG' >> "$DOSEMUDIR/autoexec.bat"
302
echo 'SET DIRCMD=/p/ogne' >> "$DOSEMUDIR/autoexec.bat"
624 mateuszvis 303
echo 'SET TEMP=C:\TEMP' >> "$DOSEMUDIR/autoexec.bat"
1670 mateusz.vi 304
echo 'PATH %DOSDIR%' >> "$DOSEMUDIR/autoexec.bat"
322 mateuszvis 305
echo "" >> "$DOSEMUDIR/autoexec.bat"
1103 mateusz.vi 306
echo 'IF NOT EXIST INSTALL.BAT GOTO NORMBOOT' >> "$DOSEMUDIR/autoexec.bat"
322 mateuszvis 307
echo "REM *** this is a one-time setup script used only during first initialization ***" >> "$DOSEMUDIR/autoexec.bat"
1103 mateusz.vi 308
echo 'CALL INSTALL.BAT' >> "$DOSEMUDIR/autoexec.bat"
309
echo 'DEL INSTALL.BAT' >> "$DOSEMUDIR/autoexec.bat"
310
echo 'GOTO ENDOFFILE' >> "$DOSEMUDIR/autoexec.bat"
322 mateuszvis 311
echo "" >> "$DOSEMUDIR/autoexec.bat"
1103 mateusz.vi 312
echo ":NORMBOOT" >> "$DOSEMUDIR/autoexec.bat"
321 mateuszvis 313
echo "ECHO." >> "$DOSEMUDIR/autoexec.bat"
314
echo "ECHO Welcome to SvarDOS (powered by DOSEMU)! Type HELP if you are lost." >> "$DOSEMUDIR/autoexec.bat"
315
echo "ECHO." >> "$DOSEMUDIR/autoexec.bat"
1103 mateusz.vi 316
echo ":ENDOFFILE" >> "$DOSEMUDIR/autoexec.bat"
321 mateuszvis 317
rm -f "$PUBDIR/svardos-dosemu.zip"
643 mateusz.vi 318
zip -rm9jk "$PUBDIR/svardos-$CURDATE-dosemu.zip" "$DOSEMUDIR"
321 mateuszvis 319
rmdir "$DOSEMUDIR"
320
 
836 mateusz.vi 321
echo
322
echo "### Generating ISO CD image"
323
echo
324
 
643 mateusz.vi 325
CDISO="$PUBDIR/svardos-$CURDATE-cd.iso"
326
CDZIP="$PUBDIR/svardos-$CURDATE-cd.zip"
194 mateuszvis 327
 
279 mateuszvis 328
$GENISOIMAGE -input-charset cp437 -b boot.img -iso-level 1 -f -V SVARDOS -o "$CDISO" "$CDROOT/boot.img"
2 mv_fox 329
 
204 mateuszvis 330
# compress the ISO
331
zip -mj9 "$CDZIP" "$CDISO"
332
 
1616 mateusz.vi 333
 
334
###############################################################################
335
# remove internationalization files for EN-ONLY releases. This is the only    #
336
# way to build the 360K variant                                               #
337
###############################################################################
338
 
1927 mateusz.vi 339
#rm "$FLOPROOT"/*.cpx
340
#rm "$FLOPROOT"/install.lng
341
#rm "$FLOPROOT"/display.exe
342
#rm "$FLOPROOT"/mode.com
1616 mateusz.vi 343
 
344
###############################################################################
345
# remove NLS and LNG files from packages to build EN-ONLY builds              #
346
###############################################################################
347
 
1927 mateusz.vi 348
#echo "### remove NLS and LNG files from packages to build EN-ONLY builds"
349
#for p in $COREPKGS ; do
350
#  # the || true bit is because zip returns a non-zero exit code on no file match
351
#  zip -dq "$CDROOT/$p.svp" 'bin/*.lng' 'BIN/*.LNG' 'nls/*' 'NLS/*' || true
352
#done
1616 mateusz.vi 353
 
1927 mateusz.vi 354
#prep_flop 80 2 18 1440 "$PUBDIR" "1.44M-EN_ONLY" "$COREPKGS"
1616 mateusz.vi 355
#prep_flop 80 2 21 1680 "$PUBDIR" "1.44M-DMF-EN_ONLY"
1927 mateusz.vi 356
#prep_flop 80 2 15 1200 "$PUBDIR" "1.2M-EN_ONLY" "$COREPKGS"
357
#prep_flop 80 2  9  720 "$PUBDIR" "720K-EN_ONLY" "$COREPKGS"
358
#prep_flop 40 2  9  360 "$PUBDIR" "360K-EN_ONLY" "$COREPKGS"
1616 mateusz.vi 359
 
360
 
361
###############################################################################
1772 mateusz.vi 362
# compute the svardos stub, useful for migrating alien DOS systems to SvarDOS #
363
###############################################################################
364
 
365
echo
366
echo "### generating the pkgstub zip archive"
367
 
368
mkdir "$PUBDIR"/pkgstub
369
unzip -jC "$REPOROOTCORE"/pkgnet.svp bin/pkgnet.exe -d "$PUBDIR"/pkgstub
370
unzip -jC "$REPOROOTCORE"/pkg.svp bin/pkg.exe -d "$PUBDIR"/pkgstub
371
 
372
cat <<EOF > "$PUBDIR"/pkgstub/readme.txt
373
 
374
        SvarDOS stub, or how to plant a SvarDOS seed in a foreign land
375
        --------------------------------------------------------------
376
 
377
This archive contains files that allow to install a SvarDOS stub within
378
another DOS system. This makes it possible to use the SvarDOS online repository
379
of packages on non-SvarDOS systems, assuming you have a network card connected
380
to the internet and a suitable packet driver.
381
 
382
If you do not have internet connectivity, then you will still be able to
383
install SvarDOS packages (*.SVP) once you copy them to your PC. You can fetch
384
SvarDOS packages at <http://svardos.org>.
385
 
386
Follow the guide now:
387
 
388
=======================================
389
MKDIR C:\\SVARDOS
390
MKDIR C:\\SVARDOS\\CFG
391
 
392
SET WATTCP.CFG=C:\\SVARDOS\\CFG
393
SET DOSDIR=C:\\SVARDOS
394
SET LANG=EN
395
SET PATH=%PATH%;C:\SVARDOS
396
 
397
COPY *.EXE C:\\SVARDOS\\
398
COPY *.CFG C:\\SVARDOS\CFG\\
399
=======================================
400
 
401
If in doubt, reach out to us at <http://svardos.org>.
402
EOF
403
 
404
cat <<EOF > "$PUBDIR"/pkgstub/wattcp.cfg
405
# Rely on DHCP by default
406
my_ip = dhcp
407
 
408
# modify (and uncomment) these if you have a fix IP setup:
409
#
410
#my_ip = 0.0.0.0  ; IP address
411
#netmask = 255.255.255.0  ; netmask
412
#nameserver = 0.0.0.0  ; primary DNS, mandatory if not using DHCP
413
#nameserver = 0.0.0.0  ; secondary DNS, optional
414
#gateway = 0.0.0.0  ; default gateway
415
EOF
416
 
417
cat <<EOF > "$PUBDIR"/pkgstub/pkg.cfg
418
# pkg config file - specifies locations where SvarDOS packages will be installed
419
 
420
# SvarDOS core files
421
DIR BIN C:\\SVARDOS\\
422
 
423
# General location for programs
424
DIR PROGS C:\\
425
 
426
# Games
427
DIR GAMES C:\\
428
 
429
# Drivers
430
DIR DRIVERS C:\\DRIVERS\\
431
 
432
# Development tools
433
DIR DEVEL C:\\DEVEL\\
434
EOF
435
 
436
zip -m -k9jr "$PUBDIR"/svarstub.zip "$PUBDIR"/pkgstub
437
rmdir "$PUBDIR"/pkgstub
438
 
439
 
440
 
441
###############################################################################
1616 mateusz.vi 442
# cleanup all temporary things                                                #
443
###############################################################################
444
 
836 mateusz.vi 445
if [ "x$2" != "xnoclean" ] ; then
446
  echo
904 bttr 447
  echo "### Cleanup of temporary directories:"
836 mateusz.vi 448
  echo "# $CDROOT"
449
  echo "# $FLOPROOT"
450
  echo
194 mateuszvis 451
  rm -rf "$CDROOT" "$FLOPROOT"
452
fi
189 mateuszvis 453
 
11 mv_fox 454
cd "$origdir"
455
 
836 mateusz.vi 456
echo
457
echo "### ALL DONE! ###"
16 mv_fox 458
 
2 mv_fox 459
exit 0