# HG changeset patch # User Bill Pierce # Date 1486170636 -3600 # Node ID 8418259a032dd89b6418913a43afaf75e7a7affe # Parent 820bc08befa582ad1ee1dc007906aa04622885cf 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" diff -r 820bc08befa5 -r 8418259a032d level2/coco3/makefile --- 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 diff -r 820bc08befa5 -r 8418259a032d level2/coco3/modules/makefile --- 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 \ diff -r 820bc08befa5 -r 8418259a032d level2/coco3/sys/makefile --- 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)