Mercurial > hg > Members > kono > nitros9-code
diff level2/coco3/bootfiles/makefile @ 2796:fb494c32bd68 lwtools-port
Updated level2/coco3 makefiles to create headless becker&arduino boot disks.
Updated level2/coco3/bootfiles/makefile to create bootfiles
for headless becker and headless arduino.
Updated level2/coco3/makefile to create boot disk images
for headless becker and headless arduino.
author | drencor-xeen |
---|---|
date | Mon, 28 Jan 2013 02:25:28 -0600 |
parents | 7b1ec1a7a288 |
children | 5c6b71612ce4 |
line wrap: on
line diff
--- a/level2/coco3/bootfiles/makefile Mon Jan 28 01:52:42 2013 -0600 +++ b/level2/coco3/bootfiles/makefile Mon Jan 28 02:25:28 2013 -0600 @@ -126,6 +126,36 @@ $(PIPE) \ $(CLOCK60HZDW) +# NitrOS-9 disk bootfile to allow booting from DriveWire 3 server +# Headless mode Becker Port +BOOTFILE_BECKER_HEADLESS = $(MD)/krnp2 $(MD)/ioman $(MD)/init \ + $(MD)/rbf.mn \ + $(RBDWBECKER) \ + $(MD)/ddx0.dd \ + $(FLOPPY_40D) \ + $(MD)/scf.mn \ + $(MD)/scdwv.dr \ + $(MD)/term_scdwv.dt \ + $(SCDWV_NET) \ + $(SCDWP) \ + $(PIPE) \ + $(CLOCK60HZDW) + +# NitrOS-9 disk bootfile to allow booting from DriveWire 3 server +# Headless mode Arduino +BOOTFILE_ARDUINO_HEADLESS = $(MD)/krnp2 $(MD)/ioman $(MD)/init \ + $(MD)/rbf.mn \ + $(RBDWARDUINO) \ + $(MD)/ddx0.dd \ + $(FLOPPY_40D) \ + $(MD)/scf.mn \ + $(MD)/scdwv.dr \ + $(MD)/term_scdwv.dt \ + $(SCDWV_NET) \ + $(SCDWP) \ + $(PIPE) \ + $(CLOCK60HZDW) + # NitrOS-9 disk bootfile to allow booting from WD1773 disk controller BOOTFILE_40D = $(MD)/krnp2 $(MD)/ioman $(MD)/init \ $(MD)/rbf.mn \ @@ -163,7 +193,10 @@ $(PIPE) \ $(CLOCK50HZ) -BOOTFILES = bootfile_40d bootfile_40d_50hz bootfile_80d bootfile_80d_50hz bootfile_dw bootfile_dw_headless bootfile_becker bootfile_arduino +BOOTFILES = bootfile_40d bootfile_40d_50hz bootfile_80d \ + bootfile_80d_50hz bootfile_dw bootfile_dw_headless \ + bootfile_becker bootfile_arduino bootfile_becker_headless \ + bootfile_arduino_headless KERNELS = kernel_1773 kernel_1773_50hz kernel_dw kernel_becker kernel_arduino ALLOBJS = $(BOOTFILES) $(KERNELS) @@ -195,6 +228,12 @@ bootfile_dw_headless: $(BOOTFILE_DW_HEADLESS) $(DEPENDS) $(MERGE) $(BOOTFILE_DW_HEADLESS)>$@ +bootfile_becker_headless: $(BOOTFILE_BECKER_HEADLESS) $(DEPENDS) + $(MERGE) $(BOOTFILE_BECKER_HEADLESS)>$@ + +bootfile_arduino_headless: $(BOOTFILE_ARDUINO_HEADLESS) $(DEPENDS) + $(MERGE) $(BOOTFILE_ARDUINO_HEADLESS)>$@ + # Kernels kernel_becker: $(KERNEL_BECKER) $(DEPENDS) $(MERGE) $(KERNEL_BECKER)>$@