On Thu, 22 Feb 2001 00:41:17 -0500,
Juan Casero <casero@xxxxxxxxxxxxx> wrote:
># make dep;make clean;make bzdisk
>
>Well the compile seem to go ok but when the make file started to copy the
>kernel image
>to the floppy disk in the drive suddenly the system rebooted!
Your message lines are strangely formatted, it looks like you type long
lines and something is wrapping them.
For make bzdisk, try this patch.
Index: 2.2/arch/i386/boot/Makefile
--- 2.2/arch/i386/boot/Makefile Fri, 05 Jan 2001 13:42:29 +1100 kaos
(linux-2.4/T/c/44_Makefile 1.1 644)
+++ 2.2(w)/arch/i386/boot/Makefile Thu, 22 Feb 2001 16:26:33 +1100 kaos
(linux-2.4/T/c/44_Makefile 1.1 644)
@@ -27,7 +27,7 @@
@$(MAKE) -C compressed bvmlinux
zdisk: $(BOOTIMAGE)
- dd bs=8192 if=$(BOOTIMAGE) of=/dev/fd0
+ dd conv=notrunc bs=8192 if=$(BOOTIMAGE) of=/dev/fd0
zlilo: $(CONFIGURE) $(BOOTIMAGE)
if [ -f $(INSTALL_PATH)/vmlinuz ]; then mv $(INSTALL_PATH)/vmlinuz
$(INSTALL_PATH)/vmlinuz.old; fi
|