Subversion Repositories SvarDOS

Rev

Rev 204 | Rev 246 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 204 Rev 205
1
#!/bin/bash
1
#!/bin/bash
2
#
2
#
3
# SvarDOS build script
3
# SvarDOS build script
4
# http://svardos.osdn.io
4
# http://svardos.osdn.io
5
# Copyright (C) 2016-2021 Mateusz Viste
5
# Copyright (C) 2016-2021 Mateusz Viste
6
#
6
#
7
# This script generates the SvarDOS repository index and builds ISO CD images.
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
8
# It should be executed each time that a package has been modified, added or
9
# removed.
9
# removed.
10
#
10
#
11
# usage: ./build.sh [noclean]
11
# usage: ./build.sh [noclean]
12
#
12
#
13
 
13
 
14
### parameters block starts here ############################################
14
### parameters block starts here ############################################
15
 
15
 
16
PKGDIR=`realpath ./packages`
16
PKGDIR=`realpath ./packages`
17
REPOROOT=`realpath ./website/repo`
17
REPOROOT=`realpath ./website/repo`
18
BUILDIDX=`realpath ./buildidx/buildidx`
18
BUILDIDX=`realpath ./buildidx/buildidx`
19
PUBDIR=`realpath ./website/download`
19
PUBDIR=`realpath ./website/download`
20
CDROOT=`realpath ./cdroot`
20
CDROOT=`realpath ./cdroot`
21
FLOPROOT=`realpath ./floproot`
21
FLOPROOT=`realpath ./floproot`
22
CUSTFILES=`realpath ./files`
22
CUSTFILES=`realpath ./files`
23
 
23
 
24
GENISOIMAGE=''    # can be mkisofs, genisoimage or empty for autodetection
24
GENISOIMAGE=''    # can be mkisofs, genisoimage or empty for autodetection
25
 
25
 
26
### parameters block ends here ##############################################
26
### parameters block ends here ##############################################
27
 
27
 
28
# auto-detect whether to use mkisofs or genisoimage
28
# auto-detect whether to use mkisofs or genisoimage
29
 
29
 
30
if [ "x$GENISOIMAGE" == "x" ] ; then
30
if [ "x$GENISOIMAGE" == "x" ] ; then
31
mkisofs --help 2> /dev/null
31
mkisofs --help 2> /dev/null
32
if [ $? -eq 0 ] ; then
32
if [ $? -eq 0 ] ; then
33
  GENISOIMAGE='mkisofs'
33
  GENISOIMAGE='mkisofs'
34
fi
34
fi
35
fi
35
fi
36
 
36
 
37
if [ "x$GENISOIMAGE" == "x" ] ; then
37
if [ "x$GENISOIMAGE" == "x" ] ; then
38
genisoimage --help 2> /dev/null
38
genisoimage --help 2> /dev/null
39
if [ $? -eq 0 ] ; then
39
if [ $? -eq 0 ] ; then
40
  GENISOIMAGE='genisoimage'
40
  GENISOIMAGE='genisoimage'
41
fi
41
fi
42
fi
42
fi
43
 
43
 
44
if [ "x$GENISOIMAGE" == "x" ] ; then
44
if [ "x$GENISOIMAGE" == "x" ] ; then
45
  echo "ERROR: neither genisoimage nor mkisofs was found on this system"
45
  echo "ERROR: neither genisoimage nor mkisofs was found on this system"
46
  exit 1
46
  exit 1
47
fi
47
fi
48
 
48
 
49
 
49
 
50
# abort if anything fails
50
# abort if anything fails
51
set -e
51
set -e
52
 
52
 
53
 
53
 
54
# list of packages to be part of CORE
54
# list of packages to be part of CORE
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"
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"
56
 
56
 
57
 
57
 
58
 
58
 
59
# function that builds the packages repository
59
# function that builds the packages repository
60
function dorepo {
60
function dorepo {
61
  # copy all zip files to the web repo
61
  # copy all zip files to the web repo
62
  cp "$PKGDIR"/* $REPOROOT/
62
  cp "$PKGDIR"/* $REPOROOT/
63
  # now strip the sources from repo versions
63
  # now strip the sources from repo versions
64
  find "$REPOROOT/" -iname '*.zip' -exec zip "{}" -d "SOURCE/*" ';'
64
  find "$REPOROOT/" -iname '*.zip' -exec zip "{}" -d "SOURCE/*" ';'
65
  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/*" ';'
66
  find "$REPOROOT/" -iname '*.zip' -exec zip "{}" -d "Source/*" ';'
67
 
67
 
68
  # build repo idx
68
  # build repo idx
69
  $BUILDIDX "$REPOROOT/"
69
  $BUILDIDX "$REPOROOT/"
70
}
70
}
71
 
71
 
72
 
72
 
73
# prepares image for floppy sets of size $1
73
# prepares image for floppy sets of size $1
74
function prep_flop {
74
function prep_flop {
75
  mkdir $1
75
  mkdir $1
76
  mformat -C -f $1 -v SVARDOS -B "$CUSTFILES/floppy.mbr" -i "$1/1.img"
76
  mformat -C -f $1 -v SVARDOS -B "$CUSTFILES/floppy.mbr" -i "$1/disk1.img"
77
  mcopy -sQm -i "$1/1.img" "$FLOPROOT/"* ::/
77
  mcopy -sQm -i "$1/disk1.img" "$FLOPROOT/"* ::/
78
 
78
 
79
  # now populate the floppies
79
  # now populate the floppies
80
  curdisk=1
80
  curdisk=1
81
  for p in $COREPKGS ; do
81
  for p in $COREPKGS ; do
82
    # if copy fails, then probably the floppy is full - try again after
82
    # if copy fails, then probably the floppy is full - try again after
83
    # creating an additional floppy image
83
    # creating an additional floppy image
84
    if ! mcopy -mi "$1/$curdisk.img" "$CDROOT/$p.zip" ::/ ; then
84
    if ! mcopy -mi "$1/disk$curdisk.img" "$CDROOT/$p.zip" ::/ ; then
85
      curdisk=$((curdisk+1))
85
      curdisk=$((curdisk+1))
86
      mformat -C -f $1 -v SVARDOS -i "$1/$curdisk.img"
86
      mformat -C -f $1 -v SVARDOS -i "$1/disk$curdisk.img"
87
      mcopy -mi "$1/$curdisk.img" "$CDROOT/$p.zip" ::/
87
      mcopy -mi "$1/disk$curdisk.img" "$CDROOT/$p.zip" ::/
88
    fi
88
    fi
89
  done
89
  done
90
 
90
 
-
 
91
  # add a short readme
-
 
92
  echo "This directory contains a set of $curdisk floppy images of the SvarDOS distribution in the $1 KB floppy format." > "$1/readme.txt"
-
 
93
  echo "" >> "$1/readme.txt"
-
 
94
  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." >> "$1/readme.txt"
-
 
95
  echo "" >> "$1/readme.txt"
-
 
96
  echo "Latest SvarDOS version is available on the project's homepage: http://svardos.osdn.io" >> "$1/readme.txt"
-
 
97
 
-
 
98
  unix2dos "$1/readme.txt"
-
 
99
 
91
  # zip the images (and remove them at the same time)
100
  # zip the images (and remove them at the same time)
92
  rm -f "$PUBDIR/svardos-floppy-$1k.zip"
101
  rm -f "$PUBDIR/svardos-floppy-$1k.zip"
93
  zip -9 -rmj "$PUBDIR/svardos-floppy-$1k.zip" $1/*
102
  zip -9 -rmj "$PUBDIR/svardos-floppy-$1k.zip" $1/*
94
 
103
 
95
  # clean up
104
  # clean up
96
  rmdir $1
105
  rmdir $1
97
}
106
}
98
 
107
 
99
 
108
 
100
### actual code flow starts here ############################################
109
### actual code flow starts here ############################################
101
 
110
 
102
# check presence of the buildidx tool
111
# check presence of the buildidx tool
103
if [ ! -f "$BUILDIDX" ] ; then
112
if [ ! -f "$BUILDIDX" ] ; then
104
  echo "buildidx not found at $BUILDIDX"
113
  echo "buildidx not found at $BUILDIDX"
105
  exit 1
114
  exit 1
106
fi
115
fi
107
 
116
 
108
# remember where I am, so I can get back here once all is done
117
# remember where I am, so I can get back here once all is done
109
origdir=`pwd`
118
origdir=`pwd`
110
 
119
 
111
mkdir "$CDROOT"
120
mkdir "$CDROOT"
112
mkdir "$FLOPROOT"
121
mkdir "$FLOPROOT"
113
 
122
 
114
# build the repo (also builds the listing.txt file)
123
# build the repo (also builds the listing.txt file)
115
dorepo
124
dorepo
116
 
125
 
117
# add CORE packages to CDROOT + create the list of packages on floppy
126
# add CORE packages to CDROOT + create the list of packages on floppy
118
for pkg in $COREPKGS ; do
127
for pkg in $COREPKGS ; do
119
  cp "$REPOROOT/$pkg.zip" "$CDROOT/"
128
  cp "$REPOROOT/$pkg.zip" "$CDROOT/"
120
  echo "$pkg" >> "$FLOPROOT/install.lst"
129
  echo "$pkg" >> "$FLOPROOT/install.lst"
121
done
130
done
122
 
131
 
123
# prepare the content of the boot (install) floppy
132
# prepare the content of the boot (install) floppy
124
cp "install/install.com" "$FLOPROOT/"
133
cp "install/install.com" "$FLOPROOT/"
125
cp "install/nls/"install.?? "$FLOPROOT/"
134
cp "install/nls/"install.?? "$FLOPROOT/"
126
cp -r "$CUSTFILES/floppy/"* "$FLOPROOT/"
135
cp -r "$CUSTFILES/floppy/"* "$FLOPROOT/"
127
 
136
 
128
# build the boot (CD) floppy image
137
# build the boot (CD) floppy image
129
export MTOOLS_NO_VFAT=1
138
export MTOOLS_NO_VFAT=1
130
mformat -C -f 1440 -v SVARDOS -B "$CUSTFILES/floppy.mbr" -i "$CDROOT/boot.img"
139
mformat -C -f 1440 -v SVARDOS -B "$CUSTFILES/floppy.mbr" -i "$CDROOT/boot.img"
131
mcopy -sQm -i "$CDROOT/boot.img" "$FLOPROOT/"* ::/
140
mcopy -sQm -i "$CDROOT/boot.img" "$FLOPROOT/"* ::/
132
 
141
 
133
# prepare images for floppies in different sizes and numbers
142
# prepare images for floppies in different sizes and numbers
134
prep_flop 2880
143
prep_flop 2880
135
prep_flop 1440
144
prep_flop 1440
136
prep_flop 1200
145
prep_flop 1200
137
prep_flop 720
146
prep_flop 720
138
 
147
 
139
CDISO="$PUBDIR/svardos-cd.iso"
148
CDISO="$PUBDIR/svardos-cd.iso"
140
CDZIP="$PUBDIR/svardos-cd.zip"
149
CDZIP="$PUBDIR/svardos-cd.zip"
141
 
150
 
142
# delete previous (if any) iso
151
# delete previous (if any) iso
143
echo "cleaning up old versions..."
152
echo "cleaning up old versions..."
144
rm -f "$CDISO" "$CDZIP"
153
rm -f "$CDISO" "$CDZIP"
145
 
154
 
146
$GENISOIMAGE -input-charset cp437 -b boot.img -iso-level 1 -f -V SVARDOS -o "$CDISO" "$CDROOT"
155
$GENISOIMAGE -input-charset cp437 -b boot.img -iso-level 1 -f -V SVARDOS -o "$CDISO" "$CDROOT"
147
 
156
 
148
# compress the ISO
157
# compress the ISO
149
zip -mj9 "$CDZIP" "$CDISO"
158
zip -mj9 "$CDZIP" "$CDISO"
150
 
159
 
151
# cleanup temporary things
160
# cleanup temporary things
152
if [ "x$1" != "xnoclean" ] ; then
161
if [ "x$1" != "xnoclean" ] ; then
153
  rm -rf "$CDROOT" "$FLOPROOT"
162
  rm -rf "$CDROOT" "$FLOPROOT"
154
fi
163
fi
155
 
164
 
156
cd "$origdir"
165
cd "$origdir"
157
 
166
 
158
#cd svnlschk
167
#cd svnlschk
159
#./webgen.sh
168
#./webgen.sh
160
#cd ..
169
#cd ..
161
 
170
 
162
echo "ALL DONE!"
171
echo "ALL DONE!"
163
 
172
 
164
exit 0
173
exit 0
165
 
174