diff options
author | Doug Ambrisko <ambrisko@FreeBSD.org> | 2004-06-30 21:52:50 +0000 |
---|---|---|
committer | Doug Ambrisko <ambrisko@FreeBSD.org> | 2004-06-30 21:52:50 +0000 |
commit | 23dd687dccff7b405ea8328609428433bbb999fa (patch) | |
tree | 545d0f4efcde968a56abf1fab5acf97676ac1c42 /net/etherboot/files/patch-ac | |
parent | Fix for auto-creation of an auxiliary directory when using the base (diff) |
Update to EtherBoot 5.2.4
Notes
Notes:
svn path=/head/; revision=112631
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) |