2019-10-20 00:03:29 +00:00
|
|
|
|
NEW
|
|
|
|
|
PREFIX
|
|
|
|
|
AUTO 4,1
|
|
|
|
|
#!/BIN/SH
|
|
|
|
|
#
|
2019-12-06 02:16:55 +00:00
|
|
|
|
# This script makes a proper fullboot 32mb disk using the files
|
|
|
|
|
# found in a particular BUILD stored in /make/builds
|
2019-10-20 00:03:29 +00:00
|
|
|
|
#
|
|
|
|
|
. MAKEFUNCS
|
|
|
|
|
CALL CS
|
2019-12-06 02:16:55 +00:00
|
|
|
|
CALL TBOX " fullboot 32mb Media Creator"
|
2019-10-20 00:03:29 +00:00
|
|
|
|
CALL PRINTXY 8 0 "You must have the correct image mounted on S7D2"
|
|
|
|
|
ECHO "\n"
|
|
|
|
|
READ -P "Do you want to proceed (Y/N)? " P
|
|
|
|
|
SWITCH $P
|
|
|
|
|
CASE Y
|
|
|
|
|
CASE y
|
|
|
|
|
ECHO
|
|
|
|
|
BREAK
|
|
|
|
|
DEFAULT
|
|
|
|
|
ECHO "\n\nExiting.\n"
|
|
|
|
|
EXIT
|
|
|
|
|
END
|
|
|
|
|
READ -P "WHICH BUILD NO: " B
|
|
|
|
|
IF [ -Z $B ]
|
|
|
|
|
ECHO "You did not enter any response."
|
|
|
|
|
ECHO
|
|
|
|
|
ECHO "Exiting"
|
|
|
|
|
EXIT
|
|
|
|
|
FI
|
2019-12-06 02:16:55 +00:00
|
|
|
|
SET SRC = "/make/builds/build${B}"
|
2019-10-20 00:03:29 +00:00
|
|
|
|
IF [ -D ${SRC} ]
|
|
|
|
|
ECHO "\n\nFound Valid BUILD\n"
|
|
|
|
|
ELSE
|
|
|
|
|
ECHO "\n\nValid BUILD not found."
|
|
|
|
|
ECHO
|
|
|
|
|
ECHO "Exiting"
|
|
|
|
|
EXIT
|
|
|
|
|
FI
|
|
|
|
|
ECHO "Is this a (R)elease, (C)andidate or (S)table Build"
|
|
|
|
|
READ -P "ENTER R C or S: " RCS
|
|
|
|
|
IF [ -Z $RCS ]
|
|
|
|
|
ECHO "You did not enter any response."
|
|
|
|
|
ECHO
|
|
|
|
|
ECHO "Exiting"
|
|
|
|
|
EXIT
|
|
|
|
|
FI
|
|
|
|
|
SWITCH $RCS
|
|
|
|
|
CASE r
|
|
|
|
|
CASE R
|
|
|
|
|
SET IM = "Release Build No. ${B}"
|
|
|
|
|
BREAK
|
|
|
|
|
CASE c
|
|
|
|
|
CASE C
|
|
|
|
|
SET IM = "Release Candidate Build No. ${B}"
|
|
|
|
|
BREAK
|
|
|
|
|
CASE s
|
|
|
|
|
CASE S
|
|
|
|
|
SET IM = "Stable Release Build No. ${B}"
|
|
|
|
|
BREAK
|
|
|
|
|
DEFAULT
|
|
|
|
|
ECHO "You did not enter a valid response."
|
|
|
|
|
ECHO "You must enter only one of the characters R C or S!"
|
|
|
|
|
ECHO
|
|
|
|
|
ECHO "Exiting"
|
|
|
|
|
EXIT
|
|
|
|
|
END
|
|
|
|
|
ECHO "Formatting Destination..."
|
2019-12-06 02:16:55 +00:00
|
|
|
|
FORMAT -B 65535 s7d2 fullboot
|
2019-10-20 00:03:29 +00:00
|
|
|
|
ECHO "Making Directory Structure..."
|
2019-12-06 02:16:55 +00:00
|
|
|
|
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
|
2019-10-20 00:03:29 +00:00
|
|
|
|
ECHO "Copying Files..."
|
2019-12-06 02:16:55 +00:00
|
|
|
|
FOR FILE IN (fullfiles)
|
|
|
|
|
CP -Q ${SRC}/${FILE} /fullboot/${FILE}
|
2019-10-20 00:03:29 +00:00
|
|
|
|
NEXT
|
2019-12-06 02:16:55 +00:00
|
|
|
|
CP -Q -Y /make/assets/pdos203tc/prodos /fullboot
|
|
|
|
|
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
|
|
|
|
|
ECHO "fullboot 32mb Disk Created!"
|
2019-10-20 00:03:29 +00:00
|
|
|
|
MAN
|
|
|
|
|
TEXT /MAKE/USR/SHARE/MAKE/MAKEFULL32
|