diff options
Diffstat (limited to 'net/etherboot/files/patch-ac')
-rw-r--r-- | net/etherboot/files/patch-ac | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/net/etherboot/files/patch-ac b/net/etherboot/files/patch-ac new file mode 100644 index 000000000000..5722f8e93f60 --- /dev/null +++ b/net/etherboot/files/patch-ac @@ -0,0 +1,15 @@ +--- ./arch/i386/Makefile.orig Wed Jun 30 14:11:17 2004 ++++ ./arch/i386/Makefile Wed Jun 30 14:12:08 2004 +@@ -271,10 +271,10 @@ + + # rules to write the .img/.zimg image onto a blank floppy + %.fd0: %.img $(DISKLOADER) $(START16) +- cat $(DISKLOADER) $(START16) $< > /dev/fd0 ++ cat $(DISKLOADER) $(START16) $< | dd bs=512 conv=sync > /dev/fd0 + + %.zfd0: %.zimg $(DISKLOADER) $(START16) +- cat $(DISKLOADER) $(START16) $< > /dev/fd0 ++ cat $(DISKLOADER) $(START16) $< | dd bs=512 conv=sync > /dev/fd0 + + # rule to make a non-emulation ISO boot image + %.iso: %.zimg $(START16) |