A2osX/MAKE/MAKEDEBUG.txt

70 lines
1.5 KiB
Plaintext
Raw Normal View History

NEW
PREFIX
AUTO 4,1
2019-12-06 02:16:55 +00:00
#!/bin/sh
#
2019-12-06 02:16:55 +00:00
# This script makes a proper debug (140K) disk using the files
# found in a particular BUILD stored in /make/builds
#
. makefuncs
CALL CS
2019-12-06 02:16:55 +00:00
CALL TBOX "debug (140K Floppy) Media Creator"
CALL PRINTXY 8 0 "You must have the correct 140K image mounted on /dev/s6d2"
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
ECHO
READ -P "WHICH BUILD NO: " B
IF [ -Z $B ]
ECHO "You did not enter any response."
ECHO
ECHO "Exiting"
EXIT
FI
SET SRC = "/MAKE/BUILDS/BUILD${B}"
IF [ -D ${SRC} ]
ECHO "\n\nFound Valid BUILD\n"
ELSE
ECHO "\n\nValid BUILD not found."
ECHO
ECHO "Exiting"
EXIT
FI
SET IM = "DEBUG Build No. ${B}"
ECHO "\n\nFormatting Destination..."
format -1 s6d2 debug
ECHO "Making Directory Structure..."
2019-12-06 02:16:55 +00:00
md /debug/bin
md /debug/drv
md /debug/etc
md /debug/lib
md /debug/root
md /debug/sbin
md /debug/sys
ECHO "Copying Files..."
2019-12-06 02:16:55 +00:00
FOR FILE IN (debugfiles)
cp -Q ${SRC}/${FILE} /debug/${FILE}
NEXT
cp -Q -Y ${SRC}/PRODOS.FX.PAKED /debug/ProDOS
cp -Q -Y debuginit /debug/etc/init
2019-12-06 02:16:55 +00:00
ECHO "Welcome to A2osX!" > /debug/etc/issue
ECHO >> /debug/etc/issue
ECHO $IM >> /debug/etc/issue
ECHO >> /debug/etc/issue
ECHO >> /debug/etc/issue
ECHO "This is the Special DEBUG BOOT DISK" >> /debug/etc/issue
ECHO >> /debug/etc/issue
cp -Q tcpip.conf /debug/etc/tcpip.conf
cp -Q debugprofile /debug/root/profile
2019-12-06 02:16:55 +00:00
ECHO "debug Disk Created!"
MAN
TEXT /MAKE/USR/SHARE/MAKE/MAKEDEBUG