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
2019-12-06 02:16:55 +00:00
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..."
2019-12-06 02:16:55 +00:00
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
2019-12-06 02:16:55 +00:00
CP -Q -Y /make/assets/pdos203tc/prodos /debug
CP -Q -Y debuginit /debug/etc/init
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
ECHO "debug Disk Created!"
MAN
TEXT /MAKE/USR/SHARE/MAKE/MAKEDEBUG