Subversion Repositories SvarDOS

Rev

Rev 194 | Rev 196 | Go to most recent revision | Show entire file | Ignore 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
Line 52... Line 52...
52
 
52
 
53
 
53
 
Line 54... Line 54...
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"
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)
Line 99... Line 99...
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/"
Line 104... Line 104...
104
  echo "$pkg" >> "$FLOPROOT/install.lst"
104
  echo "$pkg" >> "$FLOPROOT/install.lst"