Subversion Repositories SvarDOS

Rev

Rev 337 | Rev 562 | 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
4
# http://svardos.osdn.io
557 mateuszvis 5
# Copyright (C) 2016-2022 Mateusz Viste
148 mv_fox 6
#
180 mateuszvis 7
# This script generates the SvarDOS repository index and builds ISO CD images.
8
# It should be executed each time that a package has been modified, added or
9
# removed.
11 mv_fox 10
#
194 mateuszvis 11
# usage: ./build.sh [noclean]
12
#
2 mv_fox 13
 
11 mv_fox 14
### parameters block starts here ############################################
15
 
180 mateuszvis 16
PKGDIR=`realpath ./packages`
17
REPOROOT=`realpath ./website/repo`
185 mateuszvis 18
BUILDIDX=`realpath ./buildidx/buildidx`
180 mateuszvis 19
PUBDIR=`realpath ./website/download`
148 mv_fox 20
CDROOT=`realpath ./cdroot`
192 mateuszvis 21
FLOPROOT=`realpath ./floproot`
148 mv_fox 22
CUSTFILES=`realpath ./files`
2 mv_fox 23
 
171 mv_fox 24
GENISOIMAGE=''    # can be mkisofs, genisoimage or empty for autodetection
25
 
11 mv_fox 26
### parameters block ends here ##############################################
27
 
171 mv_fox 28
# auto-detect whether to use mkisofs or genisoimage
29
 
30
if [ "x$GENISOIMAGE" == "x" ] ; then
180 mateuszvis 31
mkisofs --help 2> /dev/null
171 mv_fox 32
if [ $? -eq 0 ] ; then
33
  GENISOIMAGE='mkisofs'
34
fi
35
fi
36
 
37
if [ "x$GENISOIMAGE" == "x" ] ; then
180 mateuszvis 38
genisoimage --help 2> /dev/null
171 mv_fox 39
if [ $? -eq 0 ] ; then
40
  GENISOIMAGE='genisoimage'
41
fi
42
fi
43
 
44
if [ "x$GENISOIMAGE" == "x" ] ; then
45
  echo "ERROR: neither genisoimage nor mkisofs was found on this system"
46
  exit 1
47
fi
48
 
49
 
180 mateuszvis 50
# abort if anything fails
51
set -e
134 mv_fox 52
 
53
 
300 mateuszvis 54
# list of packages to be part of CORE (always installed)
557 mateuszvis 55
COREPKGS="amb attrib chkdsk choice command cpidos deltree devload diskcopy display dosfsck edit fc fdapm fdisk format help himemx kernel keyb keyb_lay label localcfg mem mode more move pkg pkgnet shsucdx sort tree"
192 mateuszvis 56
 
300 mateuszvis 57
# list of packages to be part of EXTRA (only sometimes installed, typically drivers)
58
EXTRAPKGS="pcntpk udvd2"
192 mateuszvis 59
 
300 mateuszvis 60
# all packages
61
ALLPKGS="$COREPKGS $EXTRAPKGS"
192 mateuszvis 62
 
300 mateuszvis 63
 
180 mateuszvis 64
# function that builds the packages repository
65
function dorepo {
334 mateuszvis 66
  # clear out the web repo and copy all zip files to it
337 mateuszvis 67
  rm "$REPOROOT"/*.zip
68
  cp "$PKGDIR"/*.zip "$REPOROOT/"
180 mateuszvis 69
  # now strip the sources from repo versions
70
  find "$REPOROOT/" -iname '*.zip' -exec zip "{}" -d "SOURCE/*" ';'
71
  find "$REPOROOT/" -iname '*.zip' -exec zip "{}" -d "source/*" ';'
72
  find "$REPOROOT/" -iname '*.zip' -exec zip "{}" -d "Source/*" ';'
134 mv_fox 73
 
557 mateuszvis 74
  # hide all alternative versions under a different extension so the index builder is
75
  # not confused (filename of an alt version contains a dash, eg. "DOSMID-0.9.5.zip")
76
  rename .zip .altver "$REPOROOT"/*-*.zip
77
 
78
  # build repo index
180 mateuszvis 79
  $BUILDIDX "$REPOROOT/"
557 mateuszvis 80
 
81
  # unhide all alt versions
82
  rename .altver .zip "$REPOROOT"/*.altver
134 mv_fox 83
}
84
 
194 mateuszvis 85
 
246 mateuszvis 86
# prepares image for floppy sets of:
87
# $1 cylinders
88
# $2 heads (sides)
89
# $3 sectors per track
90
# $4 size
279 mateuszvis 91
# $5 where to put a copy of the image (optional)
194 mateuszvis 92
function prep_flop {
246 mateuszvis 93
  mkdir $4
94
  mformat -C -t $1 -h $2 -s $3 -v SVARDOS -B "$CUSTFILES/floppy.mbr" -i "$4/disk1.img"
95
  mcopy -sQm -i "$4/disk1.img" "$FLOPROOT/"* ::/
196 mateuszvis 96
 
97
  # now populate the floppies
98
  curdisk=1
300 mateuszvis 99
  for p in $ALLPKGS ; do
196 mateuszvis 100
    # if copy fails, then probably the floppy is full - try again after
101
    # creating an additional floppy image
246 mateuszvis 102
    if ! mcopy -mi "$4/disk$curdisk.img" "$CDROOT/$p.zip" ::/ ; then
196 mateuszvis 103
      curdisk=$((curdisk+1))
246 mateuszvis 104
      mformat -C -t $1 -h $2 -s $3 -v SVARDOS -i "$4/disk$curdisk.img"
105
      mcopy -mi "$4/disk$curdisk.img" "$CDROOT/$p.zip" ::/
196 mateuszvis 106
    fi
194 mateuszvis 107
  done
196 mateuszvis 108
 
205 mateuszvis 109
  # add a short readme
246 mateuszvis 110
  echo "This directory contains a set of $curdisk floppy images of the SvarDOS distribution in the $4 KB floppy format." > "$4/readme.txt"
111
  echo "" >> "$4/readme.txt"
112
  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." >> "$4/readme.txt"
113
  echo "" >> "$4/readme.txt"
114
  echo "Latest SvarDOS version is available on the project's homepage: http://svardos.osdn.io" >> "$4/readme.txt"
205 mateuszvis 115
 
246 mateuszvis 116
  unix2dos "$4/readme.txt"
205 mateuszvis 117
 
279 mateuszvis 118
  # make a copy of the image, if requested
119
  if [ "x$5" != "x" ] ; then
120
    cp "$4/disk1.img" $5
121
  fi
122
 
196 mateuszvis 123
  # zip the images (and remove them at the same time)
246 mateuszvis 124
  rm -f "$PUBDIR/svardos-floppy-$4k.zip"
125
  zip -9 -rmj "$PUBDIR/svardos-floppy-$4k.zip" $4/*
196 mateuszvis 126
 
127
  # clean up
246 mateuszvis 128
  rmdir $4
194 mateuszvis 129
}
130
 
131
 
134 mv_fox 132
### actual code flow starts here ############################################
133
 
148 mv_fox 134
# check presence of the buildidx tool
135
if [ ! -f "$BUILDIDX" ] ; then
136
  echo "buildidx not found at $BUILDIDX"
112 mv_fox 137
  exit 1
138
fi
139
 
148 mv_fox 140
# remember where I am, so I can get back here once all is done
11 mv_fox 141
origdir=`pwd`
142
 
189 mateuszvis 143
mkdir "$CDROOT"
192 mateuszvis 144
mkdir "$FLOPROOT"
189 mateuszvis 145
 
180 mateuszvis 146
# build the repo (also builds the listing.txt file)
147
dorepo
16 mv_fox 148
 
192 mateuszvis 149
# add CORE packages to CDROOT + create the list of packages on floppy
195 mateuszvis 150
for pkg in $COREPKGS ; do
192 mateuszvis 151
  cp "$REPOROOT/$pkg.zip" "$CDROOT/"
152
  echo "$pkg" >> "$FLOPROOT/install.lst"
153
done
154
 
300 mateuszvis 155
# add EXTRA packages to CDROOT (but not in the list of packages so instal won't install them by default)
156
for pkg in $EXTRAPKGS ; do
157
  cp "$REPOROOT/$pkg.zip" "$CDROOT/"
158
done
159
 
160
 
192 mateuszvis 161
# prepare the content of the boot (install) floppy
162
cp "install/install.com" "$FLOPROOT/"
163
cp "install/nls/"install.?? "$FLOPROOT/"
164
cp -r "$CUSTFILES/floppy/"* "$FLOPROOT/"
305 mateuszvis 165
unzip -Cj packages/cpidos.zip 'cpi/ega*.cpx' -d "$FLOPROOT/"
166
unzip -Cj packages/command.zip bin/command.com -d "$FLOPROOT/"
167
unzip -Cj packages/display.zip bin/display.exe -d "$FLOPROOT/"
168
unzip -Cj packages/edit.zip bin/edit.exe -d "$FLOPROOT/"
169
unzip -Cj packages/fdapm.zip bin/fdapm.com -d "$FLOPROOT/"
170
unzip -Cj packages/fdisk.zip bin/fdisk.exe bin/fdiskpt.ini -d "$FLOPROOT/"
171
unzip -Cj packages/format.zip bin/format.exe -d "$FLOPROOT/"
172
unzip -Cj packages/kernel.zip bin/kernel.sys bin/sys.com -d "$FLOPROOT/"
173
unzip -Cj packages/mem.zip bin/mem.exe -d "$FLOPROOT/"
174
unzip -Cj packages/mode.zip bin/mode.com -d "$FLOPROOT/"
175
unzip -Cj packages/more.zip bin/more.exe -d "$FLOPROOT/"
176
unzip -Cj packages/pkg.zip bin/pkg.exe -d "$FLOPROOT/"
192 mateuszvis 177
 
194 mateuszvis 178
# build the boot (CD) floppy image
192 mateuszvis 179
export MTOOLS_NO_VFAT=1
279 mateuszvis 180
#mformat -C -f 2880 -v SVARDOS -B "$CUSTFILES/floppy.mbr" -i "$CDROOT/boot.img"
181
#mcopy -sQm -i "$CDROOT/boot.img" "$FLOPROOT/"* ::/
192 mateuszvis 182
 
246 mateuszvis 183
# prepare images for floppies in different sizes (args are C H S SIZE)
279 mateuszvis 184
prep_flop 80 2 36 2880 "$CDROOT/boot.img"
246 mateuszvis 185
prep_flop 80 2 18 1440
186
prep_flop 80 2 15 1200
187
prep_flop 80 2  9  720
316 mateuszvis 188
#prep_flop 96 64 32 98304 "$PUBDIR/svardos-zip100.img" # ZIP 100M (for USB boot in "USB-ZIP mode")
194 mateuszvis 189
 
321 mateuszvis 190
# prepare the DOSEMU boot zip
191
DOSEMUDIR='dosemu-prep-files'
192
mkdir "$DOSEMUDIR"
322 mateuszvis 193
# INSTALL.BAT
194
echo 'IF NOT EXIST C:\TMP\NUL MKDIR C:\TMP'
195
echo 'mkdir %DOSDIR%' >> "$DOSEMUDIR/install.bat"
196
echo 'mkdir %DOSDIR%\cfg' >> "$DOSEMUDIR/install.bat"
197
echo 'ECHO # pkg config file - specifies locations where packages should be installed >> %DOSDIR%\cfg\pkg.cfg' >> "$DOSEMUDIR/install.bat"
198
echo 'ECHO DIR PROGS C:\ >> %DOSDIR%\cfg\pkg.cfg' >> "$DOSEMUDIR/install.bat"
199
echo 'ECHO DIR GAMES C:\ >> %DOSDIR%\cfg\pkg.cfg' >> "$DOSEMUDIR/install.bat"
200
echo 'ECHO DIR DRIVERS C:\DRIVERS\ >> %DOSDIR%\cfg\pkg.cfg' >> "$DOSEMUDIR/install.bat"
201
echo 'ECHO DIR DEVEL C:\DEVEL\ >> %DOSDIR%\cfg\pkg.cfg' >> "$DOSEMUDIR/install.bat"
321 mateuszvis 202
for p in $COREPKGS ; do
203
  cp "$CDROOT/$p.zip" "$DOSEMUDIR/"
204
  echo "pkg install $p.zip" >> "$DOSEMUDIR/install.bat"
205
  echo "del $p.zip" >> "$DOSEMUDIR/install.bat"
206
done
322 mateuszvis 207
echo 'ECHO my_ip = dhcp >> %DOSDIR%\CFG\WATTCP.CFG' >> "$DOSEMUDIR/install.bat"
208
echo 'del pkg.exe' >> "$DOSEMUDIR/install.bat"
326 mateuszvis 209
echo 'ECHO SHELLHIGH=C:\SVARDOS\BIN\COMMAND.COM /P >> C:\CONFIG.SYS' >> "$DOSEMUDIR/install.bat"
322 mateuszvis 210
echo 'ECHO.' >> "$DOSEMUDIR/install.bat"
211
echo 'ECHO -------------------------' >> "$DOSEMUDIR/install.bat"
212
echo 'ECHO  SVARDOS SETUP COMPLETED ' >> "$DOSEMUDIR/install.bat"
213
echo 'ECHO -------------------------' >> "$DOSEMUDIR/install.bat"
214
echo 'ECHO.' >> "$DOSEMUDIR/install.bat"
321 mateuszvis 215
unzip -Cj packages/kernel.zip bin/kernel.sys -d "$DOSEMUDIR/"
216
unzip -Cj packages/command.zip bin/command.com -d "$DOSEMUDIR/"
217
unzip -Cj packages/pkg.zip bin/pkg.exe -d "$DOSEMUDIR/"
322 mateuszvis 218
# CONFIG.SYS
219
echo 'FILES=50' >> "$DOSEMUDIR/config.sys"
220
echo 'DOS=HIGH,UMB' >> "$DOSEMUDIR/config.sys"
326 mateuszvis 221
echo 'DOSDATA=UMB' >> "$DOSEMUDIR/config.sys"
325 mateuszvis 222
echo 'DEVICE=D:\dosemu\emufs.sys' >> "$DOSEMUDIR/config.sys"
322 mateuszvis 223
echo 'DEVICE=D:\dosemu\umb.sys' >> "$DOSEMUDIR/config.sys"
325 mateuszvis 224
echo 'DEVICEHIGH=D:\dosemu\ems.sys' >> "$DOSEMUDIR/config.sys"
322 mateuszvis 225
echo 'INSTALL=D:\dosemu\emufs.com' >> "$DOSEMUDIR/config.sys"
226
# AUTOEXEC.BAT
321 mateuszvis 227
echo "@ECHO OFF" >> "$DOSEMUDIR/autoexec.bat"
322 mateuszvis 228
echo 'SET DOSDIR=C:\SVARDOS' >> "$DOSEMUDIR/autoexec.bat"
229
echo 'SET WATTCP.CFG=%DOSDIR%\CFG' >> "$DOSEMUDIR/autoexec.bat"
230
echo 'SET DIRCMD=/p/ogne' >> "$DOSEMUDIR/autoexec.bat"
231
echo 'SET TEMP=C:\TMP' >> "$DOSEMUDIR/autoexec.bat"
232
echo 'PATH %DOSDIR%\BIN' >> "$DOSEMUDIR/autoexec.bat"
233
echo "" >> "$DOSEMUDIR/autoexec.bat"
234
echo "REM *** this is a one-time setup script used only during first initialization ***" >> "$DOSEMUDIR/autoexec.bat"
235
echo 'IF EXIST INSTALL.BAT CALL INSTALL.BAT' >> "$DOSEMUDIR/autoexec.bat"
236
echo 'IF EXIST INSTALL.BAT DEL INSTALL.BAT' >> "$DOSEMUDIR/autoexec.bat"
237
echo "" >> "$DOSEMUDIR/autoexec.bat"
321 mateuszvis 238
echo "ECHO." >> "$DOSEMUDIR/autoexec.bat"
239
echo "ECHO Welcome to SvarDOS (powered by DOSEMU)! Type HELP if you are lost." >> "$DOSEMUDIR/autoexec.bat"
240
echo "ECHO." >> "$DOSEMUDIR/autoexec.bat"
241
rm -f "$PUBDIR/svardos-dosemu.zip"
242
zip -rm9jk "$PUBDIR/svardos-dosemu.zip" "$DOSEMUDIR"
243
rmdir "$DOSEMUDIR"
244
 
316 mateuszvis 245
# prepare the USB bootable image
246
USBIMG=$PUBDIR/svardos-usb.img
247
cp files/boot-svardos.img $USBIMG
248
mcopy -sQm -i "$USBIMG@@32256" "$FLOPROOT/"* ::/
249
for p in $ALLPKGS ; do
250
  mcopy -mi "$USBIMG@@32256" "$CDROOT/$p.zip" ::/
251
done
252
 
253
# compress the USB image
321 mateuszvis 254
rm -f "$PUBDIR/svardos-usb.zip"
316 mateuszvis 255
zip -mj9 "$PUBDIR/svardos-usb.zip" "$USBIMG"
256
 
257
# prepare the USB-ZIP bootable image
258
#USBZIPIMG=$PUBDIR/svardos-usbzip.img
259
#cat files/usb-zip.mbr "$PUBDIR/svardos-zip100.img" > $USBZIPIMG
260
 
204 mateuszvis 261
CDISO="$PUBDIR/svardos-cd.iso"
262
CDZIP="$PUBDIR/svardos-cd.zip"
194 mateuszvis 263
 
204 mateuszvis 264
# delete previous (if any) iso
148 mv_fox 265
echo "cleaning up old versions..."
204 mateuszvis 266
rm -f "$CDISO" "$CDZIP"
25 mv_fox 267
 
279 mateuszvis 268
$GENISOIMAGE -input-charset cp437 -b boot.img -iso-level 1 -f -V SVARDOS -o "$CDISO" "$CDROOT/boot.img"
2 mv_fox 269
 
204 mateuszvis 270
# compress the ISO
271
zip -mj9 "$CDZIP" "$CDISO"
272
 
192 mateuszvis 273
# cleanup temporary things
194 mateuszvis 274
if [ "x$1" != "xnoclean" ] ; then
275
  rm -rf "$CDROOT" "$FLOPROOT"
276
fi
189 mateuszvis 277
 
11 mv_fox 278
cd "$origdir"
279
 
180 mateuszvis 280
#cd svnlschk
281
#./webgen.sh
282
#cd ..
165 mv_fox 283
 
180 mateuszvis 284
echo "ALL DONE!"
16 mv_fox 285
 
2 mv_fox 286
exit 0