diff --git a/iproute-ip-man.patch b/iproute-ip-man.patch deleted file mode 100644 index fdec609..0000000 --- a/iproute-ip-man.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff -up iproute2-2.6.29/iproute2-2.6.29/man/man8/ip.8.mm iproute2-2.6.29/iproute2-2.6.29/man/man8/ip.8 ---- iproute2-2.6.29/man/man8/ip.8.mm 2008-07-25 22:46:07.000000000 +0200 -+++ iproute2-2.6.29/man/man8/ip.8 2008-08-12 14:24:01.000000000 +0200 -@@ -190,6 +190,8 @@ replace " | " monitor " } " - .IR NUMBER " ] [ " - .B cwnd - .IR NUMBER " ] [ " -+.B initcwnd -+.IR NUMBER " ] [ " - .B ssthresh - .IR REALM " ] [ " - .B realms -@@ -1480,6 +1482,11 @@ the clamp for congestion window. It is - flag is not used. - - .TP -+.BI initcwnd " NUMBER " -+the maximum initial congestion window (cwnd) size in MSS of a -+TCP connection. -+ -+.TP - .BI advmss " NUMBER " "(2.3.15+ only)" - the MSS ('Maximal Segment Size') to advertise to these - destinations when establishing TCP connections. If it is not given, diff --git a/iproute.spec b/iproute.spec index a9bf041..c178aa1 100644 --- a/iproute.spec +++ b/iproute.spec @@ -124,7 +124,7 @@ EOF %doc RELNOTES %changelog -* Fri Oct 9 2009 Marcela Mašláňová - 2.6.29-5.0.20091009gitdaf49fd6 +* Mon Oct 12 2009 Marcela Mašláňová - 2.6.29-5.0.20091009gitdaf49fd6 - new official version isn't available but it's needed -> switch to git snapshots * Thu Sep 24 2009 Marcela Mašláňová - 2.6.29-5 diff --git a/iproute2-2.6.29-fix_headers_for_gre.patch b/iproute2-2.6.29-fix_headers_for_gre.patch deleted file mode 100644 index b7f46cd..0000000 --- a/iproute2-2.6.29-fix_headers_for_gre.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 1957a322c9932e1a1d2ca1fd37ce4b335ceb7113 Mon Sep 17 00:00:00 2001 -From: Stephen Hemminger -Date: Tue, 24 Mar 2009 15:40:54 -0700 -Subject: [PATCH] Fix headers needed for gre - -Need to get right headers or build breaks. ---- - ip/link_gre.c | 3 ++- - 1 files changed, 2 insertions(+), 1 deletions(-) - -diff --git a/ip/link_gre.c b/ip/link_gre.c -index 9109312..9f8bde6 100644 ---- iproute2-2.6.29/ip/link_gre.c.old -+++ iproute2-2.6.29/ip/link_gre.c -@@ -12,11 +12,12 @@ - - #include - #include --#include - #include - #include - #include - -+#include -+#include - #include "rt_names.h" - #include "utils.h" - #include "ip_common.h" --- -1.6.0.6 - diff --git a/iproute2-display_ip4ip6tunnels.patch b/iproute2-display_ip4ip6tunnels.patch deleted file mode 100644 index e5a546a..0000000 --- a/iproute2-display_ip4ip6tunnels.patch +++ /dev/null @@ -1,28 +0,0 @@ -From c3651bf4763d7247e3edd4e20526a85de459041b Mon Sep 17 00:00:00 2001 -From: Srivats P -Date: Fri, 27 Mar 2009 11:17:26 -0700 -Subject: [PATCH] ip6tunnel: Fix no default display of ip4ip6 tunnels - -"ip -6 tunnel show" displays only ip6ip6 tunnels not ip4ip6 tunnels - - it should display all irrespective of proto. - -This is because the default tunnel proto is initialized to IPPROTO_IPV6 in ip6_tnl_parm_init() which is fine for a 'add' command but not for 'show'. This patch overrides proto with 0 signifying 'mode any' as the default in case of a 'show'. ---- - ip/ip6tunnel.c | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) - -diff --git a/ip/ip6tunnel.c b/ip/ip6tunnel.c -index 8421983..8852a67 100644 ---- iproute2-2.6.29/ip/ip6tunnel.c.old -+++ iproute2-2.6.29/ip/ip6tunnel.c -@@ -335,6 +335,7 @@ static int do_show(int argc, char **argv) - struct ip6_tnl_parm p; - - ip6_tnl_parm_init(&p, 0); -+ p.proto = 0; /* default to any */ - - if (parse_args(argc, argv, &p) < 0) - return -1; --- -1.6.2.2 - diff --git a/iproute2-missing-arpd-directory.patch b/iproute2-missing-arpd-directory.patch deleted file mode 100644 index 67d502a..0000000 --- a/iproute2-missing-arpd-directory.patch +++ /dev/null @@ -1,30 +0,0 @@ -From e48f73d6a5e90d2f883e15ccedf4f53d26bb6e74 Mon Sep 17 00:00:00 2001 -From: Olaf Rempel -Date: Wed, 9 Nov 2005 15:25:40 +0100 -Subject: [PATCH] iproute2-2.6.14-051107: missing arpd directory - -arpd requires a directory (/var/lib/arpd/) to run. -see attached patch, which lets iproute create this directroy during install. ---- - Makefile | 2 ++ - 1 files changed, 2 insertions(+), 0 deletions(-) - -diff -up iproute-2.6.29/iproute2-2.6.29/Makefile.arpd iproute-2.6.29/iproute2-2.6.29/Makefile ---- iproute2-2.6.29/Makefile.arpd 2009-04-14 12:57:23.743114366 +0200 -+++ iproute2-2.6.29/Makefile 2009-04-14 12:58:38.754111501 +0200 -@@ -5,6 +5,7 @@ CONFDIR=/etc/iproute2 - DOCDIR=/share/doc/iproute2 - MANDIR=/share/man - KERNEL_INCLUDE=/usr/include -+ARPDDIR=/var/lib/arpd - - # Path to db_185.h include - DBM_INCLUDE:=/usr/include -@@ -44,6 +45,7 @@ Config: - install: all - install -m 0755 -d $(DESTDIR)$(SBINDIR) - install -m 0755 -d $(DESTDIR)$(CONFDIR) -+ install -m 0755 -d $(DESTDIR)$(ARPDDIR) - install -m 0755 -d $(DESTDIR)$(DOCDIR)/examples - install -m 0755 -d $(DESTDIR)$(DOCDIR)/examples/diffserv - install -m 0644 README.iproute2+tc $(shell find examples -maxdepth 1 -type f) \