Subversion Repositories SvarDOS

Rev

Rev 198 | Rev 205 | 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
5
# Copyright (C) 2016-2021 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
 
192 mateuszvis 54
# list of packages to be part of CORE
195 mateuszvis 55
COREPKGS="attrib chkdsk choice command cpidos ctmouse deltree devload diskcopy display dosfsck edit fc fdapm fdisk fdnpkg format himemx kernel keyb keyb_lay label mem mode more move shsucdx sort tree undelete xcopy udvd2"
192 mateuszvis 56
 
57
 
58
 
180 mateuszvis 59
# function that builds the packages repository
60
function dorepo {
61
  # copy all zip files to the web repo
62
  cp "$PKGDIR"/* $REPOROOT/
63
  # now strip the sources from repo versions
64
  find "$REPOROOT/" -iname '*.zip' -exec zip "{}" -d "SOURCE/*" ';'
65
  find "$REPOROOT/" -iname '*.zip' -exec zip "{}" -d "source/*" ';'
66
  find "$REPOROOT/" -iname '*.zip' -exec zip "{}" -d "Source/*" ';'
134 mv_fox 67
 
180 mateuszvis 68
  # build repo idx
69
  $BUILDIDX "$REPOROOT/"
134 mv_fox 70
}
71
 
194 mateuszvis 72
 
196 mateuszvis 73
# prepares image for floppy sets of size $1
194 mateuszvis 74
function prep_flop {
75
  mkdir $1
76
  mformat -C -f $1 -v SVARDOS -B "$CUSTFILES/floppy.mbr" -i "$1/1.img"
77
  mcopy -sQm -i "$1/1.img" "$FLOPROOT/"* ::/
196 mateuszvis 78
 
79
  # now populate the floppies
80
  curdisk=1
198 mateuszvis 81
  for p in $COREPKGS ; do
196 mateuszvis 82
    # if copy fails, then probably the floppy is full - try again after
83
    # creating an additional floppy image
198 mateuszvis 84
    if ! mcopy -mi "$1/$curdisk.img" "$CDROOT/$p.zip" ::/ ; then
196 mateuszvis 85
      curdisk=$((curdisk+1))
86
      mformat -C -f $1 -v SVARDOS -i "$1/$curdisk.img"
198 mateuszvis 87
      mcopy -mi "$1/$curdisk.img" "$CDROOT/$p.zip" ::/
196 mateuszvis 88
    fi
194 mateuszvis 89
  done
196 mateuszvis 90
 
91
  # zip the images (and remove them at the same time)
92
  rm -f "$PUBDIR/svardos-floppy-$1k.zip"
93
  zip -9 -rmj "$PUBDIR/svardos-floppy-$1k.zip" $1/*
94
 
95
  # clean up
96
  rmdir $1
194 mateuszvis 97
}
98
 
99
 
134 mv_fox 100
### actual code flow starts here ############################################
101
 
148 mv_fox 102
# check presence of the buildidx tool
103
if [ ! -f "$BUILDIDX" ] ; then
104
  echo "buildidx not found at $BUILDIDX"
112 mv_fox 105
  exit 1
106
fi
107
 
148 mv_fox 108
# remember where I am, so I can get back here once all is done
11 mv_fox 109
origdir=`pwd`
110
 
189 mateuszvis 111
mkdir "$CDROOT"
192 mateuszvis 112
mkdir "$FLOPROOT"
189 mateuszvis 113
 
180 mateuszvis 114
# build the repo (also builds the listing.txt file)
115
dorepo
16 mv_fox 116
 
192 mateuszvis 117
# add CORE packages to CDROOT + create the list of packages on floppy
195 mateuszvis 118
for pkg in $COREPKGS ; do
192 mateuszvis 119
  cp "$REPOROOT/$pkg.zip" "$CDROOT/"
120
  echo "$pkg" >> "$FLOPROOT/install.lst"
121
done
122
 
123
# prepare the content of the boot (install) floppy
124
cp "install/install.com" "$FLOPROOT/"
125
cp "install/nls/"install.?? "$FLOPROOT/"
126
cp -r "$CUSTFILES/floppy/"* "$FLOPROOT/"
127
 
194 mateuszvis 128
# build the boot (CD) floppy image
192 mateuszvis 129
export MTOOLS_NO_VFAT=1
194 mateuszvis 130
mformat -C -f 1440 -v SVARDOS -B "$CUSTFILES/floppy.mbr" -i "$CDROOT/boot.img"
192 mateuszvis 131
mcopy -sQm -i "$CDROOT/boot.img" "$FLOPROOT/"* ::/
132
 
194 mateuszvis 133
# prepare images for floppies in different sizes and numbers
196 mateuszvis 134
prep_flop 2880
135
prep_flop 1440
136
prep_flop 1200
137
prep_flop 720
194 mateuszvis 138
 
204 mateuszvis 139
CDISO="$PUBDIR/svardos-cd.iso"
140
CDZIP="$PUBDIR/svardos-cd.zip"
194 mateuszvis 141
 
204 mateuszvis 142
# delete previous (if any) iso
148 mv_fox 143
echo "cleaning up old versions..."
204 mateuszvis 144
rm -f "$CDISO" "$CDZIP"
25 mv_fox 145
 
180 mateuszvis 146
$GENISOIMAGE -input-charset cp437 -b boot.img -iso-level 1 -f -V SVARDOS -o "$CDISO" "$CDROOT"
2 mv_fox 147
 
204 mateuszvis 148
# compress the ISO
149
zip -mj9 "$CDZIP" "$CDISO"
150
 
192 mateuszvis 151
# cleanup temporary things
194 mateuszvis 152
if [ "x$1" != "xnoclean" ] ; then
153
  rm -rf "$CDROOT" "$FLOPROOT"
154
fi
189 mateuszvis 155
 
11 mv_fox 156
cd "$origdir"
157
 
180 mateuszvis 158
#cd svnlschk
159
#./webgen.sh
160
#cd ..
165 mv_fox 161
 
180 mateuszvis 162
echo "ALL DONE!"
16 mv_fox 163
 
2 mv_fox 164
exit 0