summaryrefslogtreecommitdiffstats
path: root/src/arch/i386/Makefile
diff options
context:
space:
mode:
authorMarty Connor2007-07-06 14:04:55 +0200
committerMarty Connor2007-07-06 14:04:55 +0200
commit74a1c77820629a7843b0ea3f7d29fc43824765a2 (patch)
treefbedb00b6b9c71404f701ba431b954ec29348678 /src/arch/i386/Makefile
parentRename .lilo extension to .lkrn and updated dependencies (diff)
parentAdd .pdsk target (padded .dsk, suitable for qemu). (diff)
downloadipxe-74a1c77820629a7843b0ea3f7d29fc43824765a2.tar.gz
ipxe-74a1c77820629a7843b0ea3f7d29fc43824765a2.tar.xz
ipxe-74a1c77820629a7843b0ea3f7d29fc43824765a2.zip
Merge branch 'master' of /pub/scm/gpxe
Diffstat (limited to 'src/arch/i386/Makefile')
-rw-r--r--src/arch/i386/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/arch/i386/Makefile b/src/arch/i386/Makefile
index bda22c8a..620cddd2 100644
--- a/src/arch/i386/Makefile
+++ b/src/arch/i386/Makefile
@@ -111,6 +111,12 @@ NON_AUTO_MEDIA += fd0
dd if=$< bs=512 conv=sync of=/dev/fd0
sync
+# rule to create padded disk images
+NON_AUTO_MEDIA += pdsk
+%pdsk : %dsk
+ cp $< $@
+ $(PERL) ./util/dskpad.pl $@
+
# rule to make a non-emulation ISO boot image
NON_AUTO_MEDIA += iso
%iso: %lkrn util/geniso
@@ -125,6 +131,7 @@ NON_AUTO_MEDIA += liso
$(BIN)/usbdisk.bin : $(BIN)/usbdisk.o
$(OBJCOPY) -O binary $< $@
+NON_AUTO_MEDIA += usb
%usb: $(BIN)/usbdisk.bin %hd
cat $^ > $@