changeset 3137:8418259a032d

Add sysgo_bd to the coco3 port Added "SYSGOBD = sysgo_bd" to the "level2/coco3/makefile" - definitions making it possible to add the new sysgo to any level2 build Added "sysgo_bd" to the "level2/coco3/modules/makefile" - SYSMODS section and added new "sysgo_bd" section and its needed flags to the "level2/coco3/modules/makefile" - "Sysgo Modules" section Added SYSGOTEXTFILES definitions to "level2/sys/makefile"
author Bill Pierce <merlinious999@gmail.com>
date Sat, 04 Feb 2017 02:10:36 +0100
parents 820bc08befa5
children 2071c1c4b6c8
files level2/coco3/makefile level2/coco3/modules/makefile level2/coco3/sys/makefile
diffstat 3 files changed, 8 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/level2/coco3/makefile	Sat Feb 04 02:10:35 2017 +0100
+++ b/level2/coco3/makefile	Sat Feb 04 02:10:36 2017 +0100
@@ -40,6 +40,7 @@
 STARTUP		= startup
 STARTUP_DW	= startup.dw
 SYSGO		= sysgo_dd
+SYSGOBD		= sysgo_bd
 CCBKRN		= ccbkrn
 
 DSKDW		= $(DISTROVER)_dw.dsk
--- a/level2/coco3/modules/makefile	Sat Feb 04 02:10:35 2017 +0100
+++ b/level2/coco3/modules/makefile	Sat Feb 04 02:10:36 2017 +0100
@@ -26,7 +26,7 @@
 		boot_tc3 boot_dide boot_ide boot_sdc boot_rom 
 BOOTTRACK	= rel_32 rel_40 rel_80 rel_32_50hz rel_40_50hz rel_80_50hz $(BOOTERS) krn
 KERNEL		= krnp2 krnp3_perr krnp4_regdump ccbkrn
-SYSMODS		= ioman init sysgo_h0 sysgo_dd sysgo_rom rominfo vectors
+SYSMODS		= ioman init sysgo_h0 sysgo_dd sysgo_rom sysgo_bd rominfo vectors
 CLOCKS		= clock_60hz clock_50hz \
 		clock2_elim clock2_disto2 clock2_disto4 clock2_bnb \
 		clock2_smart clock2_harris clock2_cloud9 clock2_soft \
--- a/level2/coco3/sys/makefile	Sat Feb 04 02:10:35 2017 +0100
+++ b/level2/coco3/sys/makefile	Sat Feb 04 02:10:36 2017 +0100
@@ -7,6 +7,7 @@
 
 L1TXTFILES	= errmsg password
 L2TXTFILES	= $(LEVEL2)/sys/motd
+L2SYSGOTEXTFILES = $(LEVEL2)/sys/sysgo.cfg
 BINFILES	= stdfonts stdpats_2 stdpats_4 stdpats_16 stdptrs \
 		ibmedcfont isolatin1font
 HELPFILES	= asm.hp attr.hp backup.hp binex.hp build.hp chd.hp \
@@ -32,7 +33,8 @@
 HELPMSG		= helpmsg
 
 TEXTFILES	= $(L2TXTFILES) $(HELPMSG) $(L1TXTFILES)
-ALLOBJS		= $(TEXTFILES) $(BINFILES) inetd.conf
+SYSGOTEXTFILES = $(L2SYSGOTEXTFILES)
+ALLOBJS = $(TEXTFILES) $(SYSGOTEXTFILES) $(BINFILES) inetd.conf
 
 all:	$(ALLOBJS) $(DEPENDS)
 
@@ -54,5 +56,8 @@
 showtextobjs:
 	@$(ECHO) $(TEXTFILES) inetd.conf
 
+showsysgotextobjs:
+	@$(ECHO) $(SYSGOTEXTFILES)
+
 showobjs:
 	@$(ECHO) $(ALLOBJS)