Subversion Repositories SvarDOS

Rev

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

Rev 194 Rev 195
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 and in number of $2 floppies
73
# prepares image for floppy sets of size $1 and in number of $2 floppies
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/1.img"
77
  mcopy -sQm -i "$1/1.img" "$FLOPROOT/"* ::/
77
  mcopy -sQm -i "$1/1.img" "$FLOPROOT/"* ::/
78
  for i in $(seq 2 $2) ; do
78
  for i in $(seq 2 $2) ; do
79
    mformat -C -f $1 -v SVARDOS -i "$1/$i.img"
79
    mformat -C -f $1 -v SVARDOS -i "$1/$i.img"
80
  done
80
  done
81
}
81
}
82
 
82
 
83
 
83
 
84
### actual code flow starts here ############################################
84
### actual code flow starts here ############################################
85
 
85
 
86
# check presence of the buildidx tool
86
# check presence of the buildidx tool
87
if [ ! -f "$BUILDIDX" ] ; then
87
if [ ! -f "$BUILDIDX" ] ; then
88
  echo "buildidx not found at $BUILDIDX"
88
  echo "buildidx not found at $BUILDIDX"
89
  exit 1
89
  exit 1
90
fi
90
fi
91
 
91
 
92
# remember where I am, so I can get back here once all is done
92
# remember where I am, so I can get back here once all is done
93
origdir=`pwd`
93
origdir=`pwd`
94
 
94
 
95
mkdir "$CDROOT"
95
mkdir "$CDROOT"
96
mkdir "$FLOPROOT"
96
mkdir "$FLOPROOT"
97
 
97
 
98
# build the repo (also builds the listing.txt file)
98
# build the repo (also builds the listing.txt file)
99
dorepo
99
dorepo
100
 
100
 
101
# add CORE packages to CDROOT + create the list of packages on floppy
101
# add CORE packages to CDROOT + create the list of packages on floppy
102
for pkg in "${COREPKGS[@]}" ; do
102
for pkg in $COREPKGS ; do
103
  cp "$REPOROOT/$pkg.zip" "$CDROOT/"
103
  cp "$REPOROOT/$pkg.zip" "$CDROOT/"
104
  echo "$pkg" >> "$FLOPROOT/install.lst"
104
  echo "$pkg" >> "$FLOPROOT/install.lst"
105
done
105
done
106
 
106
 
107
# prepare the content of the boot (install) floppy
107
# prepare the content of the boot (install) floppy
108
cp "install/install.com" "$FLOPROOT/"
108
cp "install/install.com" "$FLOPROOT/"
109
cp "install/nls/"install.?? "$FLOPROOT/"
109
cp "install/nls/"install.?? "$FLOPROOT/"
110
cp -r "$CUSTFILES/floppy/"* "$FLOPROOT/"
110
cp -r "$CUSTFILES/floppy/"* "$FLOPROOT/"
111
 
111
 
112
# build the boot (CD) floppy image
112
# build the boot (CD) floppy image
113
export MTOOLS_NO_VFAT=1
113
export MTOOLS_NO_VFAT=1
114
mformat -C -f 1440 -v SVARDOS -B "$CUSTFILES/floppy.mbr" -i "$CDROOT/boot.img"
114
mformat -C -f 1440 -v SVARDOS -B "$CUSTFILES/floppy.mbr" -i "$CDROOT/boot.img"
115
mcopy -sQm -i "$CDROOT/boot.img" "$FLOPROOT/"* ::/
115
mcopy -sQm -i "$CDROOT/boot.img" "$FLOPROOT/"* ::/
116
 
116
 
117
# prepare images for floppies in different sizes and numbers
117
# prepare images for floppies in different sizes and numbers
118
prep_flop 1440 3
118
prep_flop 1440 3
119
prep_flop 1200 3
119
prep_flop 1200 3
120
prep_flop 720 4
120
prep_flop 720 4
121
 
121
 
122
# now populate the floppies sets
122
# now populate the floppies sets
123
#xxxxxxx
123
#xxxxxxx
124
 
124
 
125
# delete previous (if any) *.iso and *.md5 files
125
# delete previous (if any) *.iso and *.md5 files
126
echo "cleaning up old versions..."
126
echo "cleaning up old versions..."
127
rm -f "$PUBDIR/svardos.iso" "$PUBDIR/svardos.iso.md5"
127
rm -f "$PUBDIR/svardos.iso" "$PUBDIR/svardos.iso.md5"
128
 
128
 
129
CDISO="$PUBDIR/svardos.iso"
129
CDISO="$PUBDIR/svardos.iso"
130
 
130
 
131
$GENISOIMAGE -input-charset cp437 -b boot.img -iso-level 1 -f -V SVARDOS -o "$CDISO" "$CDROOT"
131
$GENISOIMAGE -input-charset cp437 -b boot.img -iso-level 1 -f -V SVARDOS -o "$CDISO" "$CDROOT"
132
 
132
 
133
# cleanup temporary things
133
# cleanup temporary things
134
if [ "x$1" != "xnoclean" ] ; then
134
if [ "x$1" != "xnoclean" ] ; then
135
  rm -rf "$CDROOT" "$FLOPROOT"
135
  rm -rf "$CDROOT" "$FLOPROOT"
136
fi
136
fi
137
 
137
 
138
# compute the MD5 of the ISO file, taking care to include only the filename in it
138
# compute the MD5 of the ISO file, taking care to include only the filename in it
139
echo "computing md5 sums..."
139
echo "computing md5 sums..."
140
cd `dirname "$CDISO"`
140
cd `dirname "$CDISO"`
141
md5sum `basename "$CDISO"` > "$CDISO.md5"
141
md5sum `basename "$CDISO"` > "$CDISO.md5"
142
 
142
 
143
cd "$origdir"
143
cd "$origdir"
144
 
144
 
145
#cd svnlschk
145
#cd svnlschk
146
#./webgen.sh
146
#./webgen.sh
147
#cd ..
147
#cd ..
148
 
148
 
149
echo "ALL DONE!"
149
echo "ALL DONE!"
150
 
150
 
151
exit 0
151
exit 0
152
 
152