updated media to 2349 build

This commit is contained in:
Patrick Kloepfer 2021-03-17 17:31:13 -04:00
parent 931dec0a29
commit d2e760ee43
6 changed files with 25 additions and 24 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -3,12 +3,12 @@ NEW
AUTO 4,1
#!/bin/sh
#
# This script makes a proper fullboot disk using the files
# This script makes a proper FULLBOOT disk using the files
# found in a particular build stored in /make/builds
#
. makefuncs
CALL CS
CALL TBOX " fullboot 800 Media Creator"
CALL TBOX " FULLBOOT 800 Media Creator"
CALL PRINTXY 8 0 "You must have the correct image mounted on /dev/s7d2"
ECHO "\n"
READ -P "Do you want to proceed (Y/N)? " P
@ -94,34 +94,35 @@ SWITCH $PDOS
EXIT
END
ECHO "Formatting Destination..."
format -B 1600 s7d2 fullboot
format -B 1600 s7d2 FULLBOOT
ECHO "Making Directory Structure..."
md /fullboot/bin
md /fullboot/drv
md /fullboot/etc
md /fullboot/lib
md /fullboot/root
md /fullboot/sbin
md /fullboot/sys
md /fullboot/sys/km
md /fullboot/tmp
md /fullboot/var
md /fullboot/var/log
md /FULLBOOT/bin
md /FULLBOOT/drv
md /FULLBOOT/etc
md /FULLBOOT/inc
md /FULLBOOT/lib
md /FULLBOOT/root
md /FULLBOOT/sbin
md /FULLBOOT/sys
md /FULLBOOT/sys/km
md /FULLBOOT/tmp
md /FULLBOOT/var
md /FULLBOOT/var/log
ECHO "Copying Files..."
FOR FILE IN (fullfiles)
cp -Q ${SRC}/${FILE} /fullboot/${FILE}
cp ${SRC}/${FILE} /FULLBOOT/${FILE}
NEXT
cp -Q -Y $PDOSFILE /fullboot/ProDOS
cp -Q -Y initboot /fullboot/etc/init
ECHO "Welcome to A2osX!" > /fullboot/etc/issue
ECHO >> /fullboot/etc/issue
ECHO $IM >> /fullboot/etc/issue
cp -Q tcpip.conf /fullboot/etc/tcpip.conf
cp -Q profile /fullboot/root/profile
cp -Q -Y $PDOSFILE /FULLBOOT/ProDOS
cp -Q -Y initboot /FULLBOOT/etc/init
ECHO "Welcome to A2osX!" > /FULLBOOT/etc/issue
ECHO >> /FULLBOOT/etc/issue
ECHO $IM >> /FULLBOOT/etc/issue
cp -Q tcpip.conf /FULLBOOT/etc/tcpip.conf
cp -Q profile /FULLBOOT/root/profile
IF [ $PDOS -eq 1 ]
ECHO Renaming VOL
REN /fullboot FULLBOOT
REN /FULLBOOT FULLBOOT
FI
ECHO "fullboot Disk Created!"
ECHO "FULLBOOT Disk Created!"
MAN
TEXT /MAKE/USR/SHARE/MAKE/MAKEFULL