# HG changeset patch # User David Ladd # Date 1423439188 21600 # Node ID 1a7d8f148c61bc382cb5b8c91153e83de030d404 # Parent ff6d97180a93c0982bacb8ca6bf963ab0fb56b1c updated coco3 bootfiles makefile to make ide bootfile and both versions of ide kernel diff -r ff6d97180a93 -r 1a7d8f148c61 level2/coco3/bootfiles/makefile --- a/level2/coco3/bootfiles/makefile Sun Feb 08 17:44:56 2015 -0600 +++ b/level2/coco3/bootfiles/makefile Sun Feb 08 17:46:28 2015 -0600 @@ -11,6 +11,8 @@ KERNEL_ARDUINO = $(MD)/rel_80 $(MD)/boot_dw_arduino $(MD)/krn KERNEL_BECKER = $(MD)/rel_80 $(MD)/boot_dw_becker $(MD)/krn KERNEL_COCOSDC = $(MD)/rel_80 $(MD)/boot_sdc $(MD)/krn +KERNEL_IDE = $(MD)/rel_80 $(MD)/boot_ide $(MD)/krn +KERNEL_DIDE = $(MD)/rel_80 $(MD)/boot_dide $(MD)/krn FLOPPY_40D = $(MD)/rb1773.dr $(MD)/d0_40d.dd $(MD)/d1_40d.dd $(MD)/d2_40d.dd FLOPPY_80D = $(MD)/rb1773.dr $(MD)/d0_80d.dd $(MD)/d1_80d.dd $(MD)/d2_80d.dd @@ -168,6 +170,16 @@ $(PIPE) \ $(CLOCK60HZ) +BOOTFILE_IDE = $(MD)/krnp2 $(MD)/ioman $(MD)/init \ + $(MD)/rbf.mn \ + $(MD)/rbsuper.dr $(MD)/llide.dr \ + $(MD)/ddi0_ide.dd \ + $(FLOPPY_40D) \ + $(MD)/scf.mn \ + $(VTIO_COGRF_80) \ + $(PIPE) \ + $(CLOCK60HZ) + # NitrOS-9 disk bootfile to allow booting from WD1773 disk controller BOOTFILE_40D = $(MD)/krnp2 $(MD)/ioman $(MD)/init \ $(MD)/rbf.mn \ @@ -208,9 +220,9 @@ 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 bootfile_cocosdc + bootfile_arduino_headless bootfile_cocosdc bootfile_ide KERNELS = kernel_1773 kernel_1773_50hz kernel_dw kernel_becker \ - kernel_arduino kernel_cocosdc + kernel_arduino kernel_cocosdc kernel_ide kernel_dide ALLOBJS = $(BOOTFILES) $(KERNELS) @@ -250,6 +262,9 @@ bootfile_cocosdc: $(BOOTFILE_COCOSDC) $(DEPENDS) $(MERGE) $(BOOTFILE_COCOSDC)>$@ +bootfile_ide: $(BOOTFILE_IDE) $(DEPENDS) + $(MERGE) $(BOOTFILE_IDE)>$@ + # Kernels kernel_becker: $(KERNEL_BECKER) $(DEPENDS) $(MERGE) $(KERNEL_BECKER)>$@ @@ -269,6 +284,12 @@ kernel_cocosdc: $(KERNEL_COCOSDC) $(DEPENDS) $(MERGE) $(KERNEL_COCOSDC)>$@ +kernel_ide: $(KERNEL_IDE) $(DEPENDS) + $(MERGE) $(KERNEL_IDE)>$@ + +kernel_dide: $(KERNEL_DIDE) $(DEPENDS) + $(MERGE) $(KERNEL_DIDE)>$@ + clean: $(RM) $(ALLOBJS)