diff options
author | Marty Connor <mdc@etherboot.org> | 2009-03-29 01:25:15 -0400 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2009-08-02 11:04:13 +0100 |
commit | 96f4f96540b75d760e073bd02cd6273f0e50a4f6 (patch) | |
tree | d58a3648ac932cd390b55b5179b39c52d652fbee /src/arch | |
parent | 14ae602ef0421c15b28d26886fa5eea99c553aca (diff) | |
download | ipxe-96f4f96540b75d760e073bd02cd6273f0e50a4f6.tar.gz |
[build] Add syslinux floppy image type .sdsk
We add a syslinux floppy disk type using parts of the genliso script.
This floppy image cat be dd'ed to a physical floppy or used in
instances where a virtual floppy with an mountable DOS filesystem is
useful.
We also modify the genliso script to only generate .liso images
rather than creating images depending on how it is called.
Signed-off-by: Michael Brown <mcb30@etherboot.org>
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/i386/Makefile.pcbios | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/arch/i386/Makefile.pcbios b/src/arch/i386/Makefile.pcbios index b1854181..d4044567 100644 --- a/src/arch/i386/Makefile.pcbios +++ b/src/arch/i386/Makefile.pcbios @@ -45,6 +45,12 @@ NON_AUTO_MEDIA += liso $(QM)$(ECHO) " [GENLISO] $@" $(Q)bash util/genliso $@ $< +# rule to make a syslinux floppy image (mountable, bootable) +NON_AUTO_MEDIA += sdsk +%sdsk: %lkrn util/gensdsk + $(QM)$(ECHO) " [GENSDSK] $@" + $(Q)bash util/gensdsk $@ $< + # Special target for building Master Boot Record binary $(BIN)/mbr.bin : $(BIN)/mbr.o $(QM)$(ECHO) " [OBJCOPY] $@" |