changeset 3169:1ff3d7673e36

mc09 l2: bring sys/makefile in line with latest organisation for other platforms Revise bootfiles/makefile to remove sysgo from bootfile - it can be found on the root of the disk.
author Neal Crook <foofoobedoo@gmail.com>
date Mon, 17 Apr 2017 22:59:28 +0100
parents fdc657942606
children 18306d646f71
files level2/mc09l2/bootfiles/makefile level2/mc09l2/sys/makefile
diffstat 2 files changed, 29 insertions(+), 26 deletions(-) [+]
line wrap: on
line diff
--- a/level2/mc09l2/bootfiles/makefile	Mon Apr 17 21:29:07 2017 +0100
+++ b/level2/mc09l2/bootfiles/makefile	Mon Apr 17 22:59:28 2017 +0100
@@ -42,7 +42,7 @@
 		$(MD)/scf.mn \
 		$(TERM_MC09) \
 		$(PIPE) \
-		$(CLOCK50HZMC09) $(MD)/sysgo_dd $(CM)/shell
+		$(CLOCK50HZMC09) $(CM)/shell
 
 
 BOOTFILES	= bootfile_mc09sd bootfile_mc09sdxl
--- a/level2/mc09l2/sys/makefile	Mon Apr 17 21:29:07 2017 +0100
+++ b/level2/mc09l2/sys/makefile	Mon Apr 17 22:59:28 2017 +0100
@@ -7,38 +7,38 @@
 
 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 basic09.hp binex.hp build.hp \
-		chd.hp chx.hp cmp.hp cobbler.hp config.hp copy.hp cputype.hp \
-		date.hp dcheck.hp debug.hp ded.hp deiniz.hp del.hp deldir.hp devs.hp \
-		dir.hp dirsort.hp disasm.hp display.hp dmem.hp dmode.hp dsave.hp dump.hp \
-		echo.hp edit.hp error.hp ex.hp exbin.hp \
-		format.hp free.hp \
-		gfx.hp gfx2.hp grfdrv.hp \
-		help.hp \
-		ident.hp iniz.hp inkey.hp irqs.hp \
-		kill.hp \
-		link.hp list.hp load.hp login.hp \
-		makdir.hp mc09rtc.hp \
-		mdir.hp megaread.hp merge.hp mfree.hp mmap.hp modpatch.hp \
-		montype.hp minted.hp mpi.hp os9gen.hp \
-		padrom.hp park.hp pmap.hp proc.hp procs.hp prompt.hp pwd.hp pxd.hp \
-		reboot.hp rename.hp runb.hp \
-		save.hp setime.hp setpr.hp shell.hp sleep.hp smap.hp \
-		tee.hp tmode.hp touch.hp tsmon.hp tuneport.hp \
-		unlink.hp \
-		verify.hp \
-		wcreate.hp \
-		xmode.hp
+HELPFILES	= asm.hp attr.hp backup.hp binex.hp build.hp chd.hp \
+		chx.hp cmp.hp cobbler.hp config.hp copy.hp cputype.hp date.hp \
+		dcheck.hp debug.hp ded.hp deiniz.hp del.hp deldir.hp devs.hp \
+		dir.hp dirsort.hp disasm.hp display.hp dmode.hp dsave.hp dump.hp echo.hp \
+		edit.hp error.hp ex.hp exbin.hp format.hp free.hp gfx.hp \
+		help.hp ident.hp iniz.hp inkey.hp irqs.hp kill.hp link.hp \
+		list.hp load.hp login.hp makdir.hp \
+		mdir.hp megaread.hp merge.hp minted.hp mpi.hp mfree.hp os9gen.hp \
+		padrom.hp park.hp procs.hp prompt.hp pwd.hp pxd.hp \
+		rename.hp save.hp setime.hp \
+		setpr.hp shell.hp sleep.hp tee.hp tmode.hp touch.hp tsmon.hp \
+		tuneport.hp unlink.hp verify.hp xmode.hp
 
-#HELPFILES	= make.hp maketerm.hp rdump.hp rlink.hp rma.hp scred.hp
+# These are Level 2/3 only
+HELPFILES	+= dmem.hp gfx2.hp grfdrv.hp basic09.hp runb.hp \
+		wcreate.hp make.hp mmap.hp modpatch.hp montype.hp \
+		pmap.hp proc.hp reboot.hp smap.hp scred.hp
+
+# Help files for code that is not in the NitrOS9 tree
+HELPFILES	+= make.hp maketerm.hp rdump.hp rlink.hp rma.hp scred.hp
+
+# These are mc09 only
+HELPFILES	+= mc09rtc.hp
 
 HELPMSG		= helpmsg
 
 TEXTFILES	= $(L2TXTFILES) $(HELPMSG) $(L1TXTFILES)
-ALLOBJS		= $(TEXTFILES) $(BINFILES) inetd.conf
+SYSGOTEXTFILES = $(L2SYSGOTEXTFILES)
+ALLOBJS = $(TEXTFILES) $(SYSGOTEXTFILES) $(BINFILES) inetd.conf
 
 all:	$(ALLOBJS) $(DEPENDS)
 
@@ -60,5 +60,8 @@
 showtextobjs:
 	@$(ECHO) $(TEXTFILES) inetd.conf
 
+showsysgotextobjs:
+	@$(ECHO) $(SYSGOTEXTFILES)
+
 showobjs:
 	@$(ECHO) $(ALLOBJS)