Subversion Repositories SvarDOS

Rev

Rev 194 | Rev 196 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 194 Rev 195
Line 50... Line 50...
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 {
Line 97... Line 97...
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