View | Details | Raw Unified | Return to bug 216329
Collapse All | Expand All

(-)Makefile (-3 / +2 lines)
Lines 4-11 Link Here
4
# With helpful hints from net/gpxe
4
# With helpful hints from net/gpxe
5
5
6
PORTNAME=	ipxe
6
PORTNAME=	ipxe
7
PORTVERSION=	20160213
7
PORTVERSION=	20161208
8
PORTREVISION=	2
9
CATEGORIES=	net
8
CATEGORIES=	net
10
9
11
MAINTAINER=	t@tobik.me
10
MAINTAINER=	t@tobik.me
Lines 27-33 Link Here
27
#   A: iPXE uses a rolling release model, in which every commit is intended
26
#   A: iPXE uses a rolling release model, in which every commit is intended
28
#      to be production-ready.  You should always use the latest code.
27
#      to be production-ready.  You should always use the latest code.
29
#
28
#
30
GH_TAGNAME=	7ecfe7159f94193a666200a17057d4cd5981b850
29
GH_TAGNAME=	26050fd4c87c50503d5bd573b2ec91703676e211
31
30
32
USES=		gmake perl5 shebangfix
31
USES=		gmake perl5 shebangfix
33
USE_BINUTILS=	yes
32
USE_BINUTILS=	yes
(-)distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (ipxe-ipxe-20160213-7ecfe7159f94193a666200a17057d4cd5981b850_GH0.tar.gz) = 81e5a199c179ea993368beca55b40f810dddf789c6da48bace72aae3d94a6aba
1
TIMESTAMP = 1484933375
2
SIZE (ipxe-ipxe-20160213-7ecfe7159f94193a666200a17057d4cd5981b850_GH0.tar.gz) = 3490722
2
SHA256 (ipxe-ipxe-20161208-26050fd4c87c50503d5bd573b2ec91703676e211_GH0.tar.gz) = 2bc78183aa863bf4491e9d948f4321bc951413a2faca1654ef0d276dae1e365e
3
SIZE (ipxe-ipxe-20161208-26050fd4c87c50503d5bd573b2ec91703676e211_GH0.tar.gz) = 3674693
(-)files/patch-config_general.h (-5 / +5 lines)
Lines 1-4 Link Here
1
--- config/general.h.orig	2016-02-12 14:04:51 UTC
1
--- config/general.h.orig	2016-12-08 09:35:52 UTC
2
+++ config/general.h
2
+++ config/general.h
3
@@ -35,7 +35,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
3
@@ -35,7 +35,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
4
  */
4
  */
Lines 8-16 Link Here
8
+#define	NET_PROTO_IPV6		/* IPv6 protocol */
8
+#define	NET_PROTO_IPV6		/* IPv6 protocol */
9
 #undef	NET_PROTO_FCOE		/* Fibre Channel over Ethernet protocol */
9
 #undef	NET_PROTO_FCOE		/* Fibre Channel over Ethernet protocol */
10
 #define	NET_PROTO_STP		/* Spanning Tree protocol */
10
 #define	NET_PROTO_STP		/* Spanning Tree protocol */
11
 #define	NET_PROTO_LACP		/* Link Aggregation control protocol */
12
@@ -54,10 +54,10 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
11
 
13
 
12
@@ -53,10 +53,10 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
13
 
14
 #define	DOWNLOAD_PROTO_TFTP	/* Trivial File Transfer Protocol */
14
 #define	DOWNLOAD_PROTO_TFTP	/* Trivial File Transfer Protocol */
15
 #define	DOWNLOAD_PROTO_HTTP	/* Hypertext Transfer Protocol */
15
 #define	DOWNLOAD_PROTO_HTTP	/* Hypertext Transfer Protocol */
16
-#undef	DOWNLOAD_PROTO_HTTPS	/* Secure Hypertext Transfer Protocol */
16
-#undef	DOWNLOAD_PROTO_HTTPS	/* Secure Hypertext Transfer Protocol */
Lines 19-28 Link Here
19
 #undef	DOWNLOAD_PROTO_SLAM	/* Scalable Local Area Multicast */
19
 #undef	DOWNLOAD_PROTO_SLAM	/* Scalable Local Area Multicast */
20
-#undef	DOWNLOAD_PROTO_NFS	/* Network File System Protocol */
20
-#undef	DOWNLOAD_PROTO_NFS	/* Network File System Protocol */
21
+#define	DOWNLOAD_PROTO_NFS	/* Network File System Protocol */
21
+#define	DOWNLOAD_PROTO_NFS	/* Network File System Protocol */
22
 //#undef DOWNLOAD_PROTO_FILE	/* Local filesystem access */
22
 
23
 
23
 /*
24
 /*
24
  * SAN boot protocols
25
@@ -141,7 +141,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
25
@@ -136,7 +136,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
26
 //#define PXE_CMD		/* PXE commands */
26
 //#define PXE_CMD		/* PXE commands */
27
 //#define REBOOT_CMD		/* Reboot command */
27
 //#define REBOOT_CMD		/* Reboot command */
28
 //#define POWEROFF_CMD		/* Power off command */
28
 //#define POWEROFF_CMD		/* Power off command */
(-)files/patch-util_parserom.pl (-11 lines)
Lines 1-11 Link Here
1
--- util/parserom.pl.orig	2016-11-03 13:22:25 UTC
2
+++ util/parserom.pl
3
@@ -157,7 +157,7 @@ sub process_isa_rom {
4
 
5
 # Output Makefile rules for the specified ROM declarations
6
 sub print_make_rules {
7
-    my ( $state, my $image, my $desc, my $vendor, my $device, my $dup ) = @_;
8
+    my ( $state, $image, $desc, $vendor, $device, $dup ) = @_;
9
     unless ( $state->{'is_header_printed'} ) {
10
         print "# NIC\t\n";
11
         print "# NIC\tfamily\t$state->{family}\n";

Return to bug 216329