diff options
author | Olli Hauer <ohauer@FreeBSD.org> | 2010-08-12 20:20:23 +0000 |
---|---|---|
committer | Olli Hauer <ohauer@FreeBSD.org> | 2010-08-12 20:20:23 +0000 |
commit | d1681b68ca6b933cedd3cbac9760a37e72b0f80c (patch) | |
tree | 3aa3744f8048438ff16ce2aee52d4e9a27d7f277 /net/gpxe/files/patch-arch__i386__Makefile.pcbios | |
parent | Revamp this port: (diff) |
PR: 14471
Submitted by: Guerkan Karaman <gk.freebsd _at_ googlemail.com>
Approved by: glarkin (mentor)
gPXE is an open-source PXE implementation and bootloader.
Create network booting code that allows computers to load
their operating system from a network or to extend an
existing PXE implementation with support for additional
protocols, such iSCSI, HTTP, TFTP, NFS, FTP and ATA
over Ethernet.
WWW: http://etherboot.org/wiki/index.php
Notes
Notes:
svn path=/head/; revision=259146
Diffstat (limited to 'net/gpxe/files/patch-arch__i386__Makefile.pcbios')
-rw-r--r-- | net/gpxe/files/patch-arch__i386__Makefile.pcbios | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/net/gpxe/files/patch-arch__i386__Makefile.pcbios b/net/gpxe/files/patch-arch__i386__Makefile.pcbios new file mode 100644 index 000000000000..3cd1570e8b94 --- /dev/null +++ b/net/gpxe/files/patch-arch__i386__Makefile.pcbios @@ -0,0 +1,25 @@ +--- ./arch/i386/Makefile.pcbios.orig 2010-06-29 21:31:33.000000000 +0200 ++++ ./arch/i386/Makefile.pcbios 2010-08-07 16:51:00.000000000 +0200 +@@ -34,19 +34,19 @@ + NON_AUTO_MEDIA += iso + %iso: %lkrn util/geniso + $(QM)$(ECHO) " [GENISO] $@" +- $(Q)ISOLINUX_BIN=$(ISOLINUX_BIN) bash util/geniso $@ $< ++ $(Q)ISOLINUX_BIN=$(ISOLINUX_BIN) sh util/geniso $@ $< + + # rule to make a floppy emulation ISO boot image + NON_AUTO_MEDIA += liso + %liso: %lkrn util/genliso + $(QM)$(ECHO) " [GENLISO] $@" +- $(Q)bash util/genliso $@ $< ++ $(Q)sh 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 $@ $< ++ $(Q)sh util/gensdsk $@ $< + + # Special target for building Master Boot Record binary + $(BIN)/mbr.bin : $(BIN)/mbr.o |