From 47717b57f3e6ebef56a20b48e26652cba6746ab3 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 17 Oct 2000 13:40:47 +0000 Subject: [PATCH] add clauses for docipl (Disk On Chip IPL) --- romimages/RON_WINFAST6300/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/romimages/RON_WINFAST6300/Makefile b/romimages/RON_WINFAST6300/Makefile index fc05b5c788..9a8964198b 100644 --- a/romimages/RON_WINFAST6300/Makefile +++ b/romimages/RON_WINFAST6300/Makefile @@ -44,10 +44,12 @@ floppy: all # we need the vmlinux.bin.gz padded out and then cat the linuxbios.rom # at then end. We always copy it to /tmp so that a waiting root shell # can put it on the floppy (see ROOTDOIT) -romimage: linuxbios.rom vmlinux.bin.gz.block +romimage: linuxbios.rom vmlinux.bin.gz.block docipl cat vmlinux.bin.gz.block linuxbios.rom > romimage cp romimage /tmp +docipl: ipl.o + objcopy -O binary -R .note -R .comment -S ipl.o docipl linuxbios.rom: linuxbios.strip mkrom ./mkrom -s 64 -f -o linuxbios.rom linuxbios.strip @@ -134,6 +136,9 @@ newpci.o: $(TOP)/lib/newpci.c linuxpci.o: $(TOP)/lib/linuxpci.c cc $(CFLAGS) -c $< +ipl.o: $(TOP)/src/northsouthbridge/sis/630/ipl.S + gcc -c -I$(TOP)/northsouthbridge/sis/630 $< + vmlinux.bin.gz.block: vmlinux.bin.gz dd conv=sync bs=448k if=vmlinux.bin.gz of=vmlinux.bin.gz.block vmlinux.bin.gz: vmlinux.bin