From d1681b68ca6b933cedd3cbac9760a37e72b0f80c Mon Sep 17 00:00:00 2001 From: Olli Hauer Date: Thu, 12 Aug 2010 20:20:23 +0000 Subject: PR: 14471 Submitted by: Guerkan Karaman 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 --- net/gpxe/files/patch-util__geniso | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 net/gpxe/files/patch-util__geniso (limited to 'net/gpxe/files/patch-util__geniso') diff --git a/net/gpxe/files/patch-util__geniso b/net/gpxe/files/patch-util__geniso new file mode 100644 index 000000000000..fcfe32f3f646 --- /dev/null +++ b/net/gpxe/files/patch-util__geniso @@ -0,0 +1,17 @@ +--- ./util/geniso.orig 2010-06-29 21:31:33.000000000 +0200 ++++ ./util/geniso 2010-08-07 17:45:13.000000000 +0200 +@@ -1,4 +1,4 @@ +-#!/bin/bash ++#!/bin/sh + # + # Generate a isolinux ISO boot image + # +@@ -50,7 +50,7 @@ + fi + b=$(basename $f) + g=${b%.lkrn} +- g=${g//[^a-z0-9]}.krn ++ g=$(echo $g | sed -e 's/[^a-z0-9]//g').krn + case "$first" in + "") + echo DEFAULT $g -- cgit v1.2.3