mirror of
https://github.com/A2osX/A2osX.git
synced 2025-03-13 14:31:28 +00:00
Updated DEBUG and STABLE.140 images based on build 1804 all lowercase and booting paked fx.
This commit is contained in:
parent
de65255370
commit
3e7d70ffe6
@ -441,6 +441,13 @@ The **EXIT** command is used to immediately end the processing of a script or fu
|
||||
|
||||
The **FI** command is used at the end of an **IF** script block. See the **IF** command below for more information and example of using **FI** as part of **IF**.
|
||||
|
||||
### FOR
|
||||
|
||||
FOR
|
||||
|
||||
The **FOR** command is used
|
||||
|
||||
|
||||
### FUNCTION
|
||||
|
||||
FUNCTION function_name
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,7 +1,7 @@
|
||||
NEW
|
||||
PREFIX
|
||||
AUTO 4,1
|
||||
a2osx.system
|
||||
A2OSX.SYSTEM
|
||||
bin/cat
|
||||
bin/chtyp
|
||||
bin/cp
|
||||
|
@ -6,7 +6,7 @@ AUTO 4,1
|
||||
# This script makes a proper debug (140K) disk using the files
|
||||
# found in a particular BUILD stored in /make/builds
|
||||
#
|
||||
. MAKEFUNCS
|
||||
. makefuncs
|
||||
CALL CS
|
||||
CALL TBOX "debug (140K Floppy) Media Creator"
|
||||
CALL PRINTXY 8 0 "You must have the correct 140K image mounted on /dev/s6d2"
|
||||
@ -29,7 +29,7 @@ IF [ -Z $B ]
|
||||
ECHO "Exiting"
|
||||
EXIT
|
||||
FI
|
||||
SET SRC = "/make/builds/build${B}"
|
||||
SET SRC = "/MAKE/BUILDS/BUILD${B}"
|
||||
IF [ -D ${SRC} ]
|
||||
ECHO "\n\nFound Valid BUILD\n"
|
||||
ELSE
|
||||
@ -40,7 +40,7 @@ ELSE
|
||||
FI
|
||||
SET IM = "DEBUG Build No. ${B}"
|
||||
ECHO "\n\nFormatting Destination..."
|
||||
FORMAT -1 s6d2 debug
|
||||
format -1 s6d2 debug
|
||||
ECHO "Making Directory Structure..."
|
||||
md /debug/bin
|
||||
md /debug/drv
|
||||
@ -51,10 +51,10 @@ md /debug/sbin
|
||||
md /debug/sys
|
||||
ECHO "Copying Files..."
|
||||
FOR FILE IN (debugfiles)
|
||||
CP -Q ${SRC}/${FILE} /debug/${FILE}
|
||||
cp -Q ${SRC}/${FILE} /debug/${FILE}
|
||||
NEXT
|
||||
CP -Q -Y ${SRC}/prodos.fx.paked /debug/ProDOS
|
||||
CP -Q -Y debuginit /debug/etc/init
|
||||
cp -Q -Y ${SRC}/PRODOS.FX.PAKED /debug/ProDOS
|
||||
cp -Q -Y debuginit /debug/etc/init
|
||||
ECHO "Welcome to A2osX!" > /debug/etc/issue
|
||||
ECHO >> /debug/etc/issue
|
||||
ECHO $IM >> /debug/etc/issue
|
||||
@ -62,8 +62,8 @@ 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
|
||||
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
|
||||
|
@ -6,7 +6,7 @@ AUTO 4,1
|
||||
# This script makes a proper miniboot (140K) disk using the files
|
||||
# found in a particular BUILD stored in /make/builds
|
||||
#
|
||||
. MAKEFUNCS
|
||||
. makefuncs
|
||||
CALL CS
|
||||
CALL TBOX "miniboot (140K Floppy) Media Creator"
|
||||
CALL PRINTXY 8 0 "You must have the correct 140K image mounted on /dev/s6d1"
|
||||
@ -29,7 +29,7 @@ IF [ -Z $B ]
|
||||
ECHO "Exiting"
|
||||
EXIT
|
||||
FI
|
||||
SET SRC = "/make/builds/build${B}"
|
||||
SET SRC = "/MAKE/BUILDS/BUILD${B}"
|
||||
IF [ -D ${SRC} ]
|
||||
ECHO "\n\nFound Valid BUILD\n"
|
||||
ELSE
|
||||
@ -67,7 +67,7 @@ SWITCH $RCS
|
||||
EXIT
|
||||
END
|
||||
ECHO "\n\nFormatting Destination..."
|
||||
FORMAT -1 s6d1 miniboot
|
||||
format -1 s6d1 miniboot
|
||||
ECHO "Making Directory Structure..."
|
||||
md /miniboot/bin
|
||||
md /miniboot/drv
|
||||
@ -78,15 +78,15 @@ md /miniboot/sbin
|
||||
md /miniboot/sys
|
||||
ECHO "Copying Files..."
|
||||
FOR FILE IN (minifiles)
|
||||
CP -Q ${SRC}/${FILE} /miniboot/${FILE}
|
||||
cp -Q -Y ${SRC}/${FILE} /miniboot/${FILE}
|
||||
NEXT
|
||||
CP -Q -Y ${SRC}/prodos.fx.paked /miniboot/ProDOS
|
||||
CP -Q -Y initboot /miniboot/etc/init
|
||||
cp -Q -Y ${SRC}/PRODOS.FX.PAKED /miniboot/ProDOS
|
||||
cp -Q -Y initboot /miniboot/etc/init
|
||||
ECHO "Welcome to A2osX!" > /miniboot/etc/issue
|
||||
ECHO >> /miniboot/etc/issue
|
||||
ECHO $IM >> /miniboot/etc/issue
|
||||
CP -Q tcpip.conf /miniboot/etc/tcpip.conf
|
||||
CP -Q profile /miniboot/root/profile
|
||||
cp -Q tcpip.conf /miniboot/etc/tcpip.conf
|
||||
cp -Q profile /miniboot/root/profile
|
||||
ECHO "miniboot Disk Created!"
|
||||
MAN
|
||||
TEXT /MAKE/USR/SHARE/MAKE/MAKEMINI
|
||||
|
@ -1,7 +1,7 @@
|
||||
NEW
|
||||
PREFIX
|
||||
AUTO 4,1
|
||||
a2osx.system
|
||||
A2OSX.SYSTEM
|
||||
bin/cat
|
||||
bin/chtyp
|
||||
bin/cp
|
||||
|
10
MAKE/profile.txt
Normal file
10
MAKE/profile.txt
Normal file
@ -0,0 +1,10 @@
|
||||
NEW
|
||||
PREFIX
|
||||
AUTO 4,1
|
||||
#!/bin/sh
|
||||
#
|
||||
# This is the standard profile file
|
||||
#
|
||||
set PS1 = '$PWD'
|
||||
MAN
|
||||
TEXT /MAKE/USR/SHARE/MAKE/profile
|
Loading…
x
Reference in New Issue
Block a user