Subversion Repositories SvarDOS

Rev

Rev 44 | Rev 63 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 44 Rev 52
Line 26... Line 26...
26
rsync -a --delete $REPOROOT $REPOROOTNOSRC
26
rsync -a --delete $REPOROOT $REPOROOTNOSRC
27
if [ $? -ne 0 ] ; then exit 1 ; fi
27
if [ $? -ne 0 ] ; then exit 1 ; fi
28
 
28
 
29
# build the boot floppy image first
29
# build the boot floppy image first
30
cp $CUSTFILES/bootmini.img $CDROOT/boot.img
30
cp $CUSTFILES/bootmini.img $CDROOT/boot.img
31
mcopy -i $CDROOT/boot.img $CUSTFILES/install.com ::/INSTALL.COM
-
 
32
mcopy -i $CDROOT/boot.img $CUSTFILES/autoexec.bat ::/AUTOEXEC.BAT
-
 
33
mcopy -i $CDROOT/boot.img $CUSTFILES/config.sys ::/CONFIG.SYS
-
 
34
mcopy -i $CDROOT/boot.img $CUSTFILES/display.exe ::/DISPLAY.EXE
-
 
35
mcopy -i $CDROOT/boot.img $CUSTFILES/fdnpkg.cfg ::/FDNPKG.CFG
-
 
36
mcopy -i $CDROOT/boot.img $CUSTFILES/mode.com ::/MODE.COM
-
 
37
mcopy -i $CDROOT/boot.img $CUSTFILES/ega.cpx ::/EGA.CPX
-
 
38
mcopy -i $CDROOT/boot.img $CUSTFILES/ega2.cpx ::/EGA2.CPX
-
 
39
mcopy -i $CDROOT/boot.img $CUSTFILES/ega3.cpx ::/EGA3.CPX
-
 
40
mcopy -i $CDROOT/boot.img $CUSTFILES/ega4.cpx ::/EGA4.CPX
-
 
41
mcopy -i $CDROOT/boot.img $CUSTFILES/ega5.cpx ::/EGA5.CPX
-
 
42
mcopy -i $CDROOT/boot.img $CUSTFILES/ega6.cpx ::/EGA6.CPX
-
 
43
mcopy -i $CDROOT/boot.img $CUSTFILES/ega7.cpx ::/EGA7.CPX
-
 
44
mcopy -i $CDROOT/boot.img $CUSTFILES/ega8.cpx ::/EGA8.CPX
-
 
45
mcopy -i $CDROOT/boot.img $CUSTFILES/ega9.cpx ::/EGA9.CPX
-
 
46
mcopy -i $CDROOT/boot.img $CUSTFILES/ega10.cpx ::/EGA10.CPX
-
 
47
mmd -i $CDROOT/boot.img ::/NLS
31
export MTOOLS_NO_VFAT=1
48
mcopy -i $CDROOT/boot.img $CUSTFILES/nls/*.* ::/NLS/
32
mcopy -sQm -i $CDROOT/boot.img $CUSTFILES/floppy/* ::/
49
 
33
 
50
# sync the boot.img file from full version to nosrc and micro
34
# sync the boot.img file from full version to nosrc and micro
51
cp $CDROOT/boot.img $CDROOTNOSRC/
35
cp $CDROOT/boot.img $CDROOTNOSRC/
52
if [ $? -ne 0 ] ; then exit 1 ; fi
36
if [ $? -ne 0 ] ; then exit 1 ; fi
53
cp $CDROOT/boot.img $CDROOTMICRO/
37
cp $CDROOT/boot.img $CDROOTMICRO/
Line 57... Line 41...
57
find $REPOROOTNOSRC/ -iname '*.zip' -exec zip "{}" -d "SOURCE/*" ';'
41
find $REPOROOTNOSRC/ -iname '*.zip' -exec zip "{}" -d "SOURCE/*" ';'
58
find $REPOROOTNOSRC/ -iname '*.zip' -exec zip "{}" -d "source/*" ';'
42
find $REPOROOTNOSRC/ -iname '*.zip' -exec zip "{}" -d "source/*" ';'
59
find $REPOROOTNOSRC/ -iname '*.zip' -exec zip "{}" -d "Source/*" ';'
43
find $REPOROOTNOSRC/ -iname '*.zip' -exec zip "{}" -d "Source/*" ';'
60
 
44
 
61
# refresh all repositories
45
# refresh all repositories
62
$BUILDIDX $REPOROOT/base && $BUILDIDX $REPOROOTNOSRC/base
46
$BUILDIDX $REPOROOT/core && $BUILDIDX $REPOROOTNOSRC/core
63
if [ $? -ne 0 ] ; then exit 1 ; fi
47
if [ $? -ne 0 ] ; then exit 1 ; fi
64
$BUILDIDX $REPOROOT/devel && $BUILDIDX $REPOROOTNOSRC/devel
48
$BUILDIDX $REPOROOT/devel && $BUILDIDX $REPOROOTNOSRC/devel
65
if [ $? -ne 0 ] ; then exit 1 ; fi
49
if [ $? -ne 0 ] ; then exit 1 ; fi
66
$BUILDIDX $REPOROOT/drivers && $BUILDIDX $REPOROOTNOSRC/drivers
50
$BUILDIDX $REPOROOT/drivers && $BUILDIDX $REPOROOTNOSRC/drivers
67
if [ $? -ne 0 ] ; then exit 1 ; fi
51
if [ $? -ne 0 ] ; then exit 1 ; fi
Line 80... Line 64...
80
$BUILDIDX $REPOROOT/util && $BUILDIDX $REPOROOTNOSRC/util
64
$BUILDIDX $REPOROOT/util && $BUILDIDX $REPOROOTNOSRC/util
81
if [ $? -ne 0 ] ; then exit 1 ; fi
65
if [ $? -ne 0 ] ; then exit 1 ; fi
82
 
66
 
83
# recompute the listing.txt file
67
# recompute the listing.txt file
84
rm $CDISODIR/listing.txt
68
rm $CDISODIR/listing.txt
85
cat $REPOROOT/base/listing.txt >> $CDISODIR/listing.txt
69
cat $REPOROOT/core/listing.txt >> $CDISODIR/listing.txt
86
cat $REPOROOT/devel/listing.txt >> $CDISODIR/listing.txt
70
cat $REPOROOT/devel/listing.txt >> $CDISODIR/listing.txt
87
cat $REPOROOT/drivers/listing.txt >> $CDISODIR/listing.txt
71
cat $REPOROOT/drivers/listing.txt >> $CDISODIR/listing.txt
88
cat $REPOROOT/edit/listing.txt >> $CDISODIR/listing.txt
72
cat $REPOROOT/edit/listing.txt >> $CDISODIR/listing.txt
89
cat $REPOROOT/emulatrs/listing.txt >> $CDISODIR/listing.txt
73
cat $REPOROOT/emulatrs/listing.txt >> $CDISODIR/listing.txt
90
cat $REPOROOT/games/listing.txt >> $CDISODIR/listing.txt
74
cat $REPOROOT/games/listing.txt >> $CDISODIR/listing.txt