summaryrefslogtreecommitdiffstats
path: root/package/openswan/patches
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-05-28 20:43:18 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-05-28 20:43:18 +0000
commit332cd7e0fbf4615ee674214707898abef85acc94 (patch)
tree424d07180e28803fad4bf3a17eae4a678fd2b591 /package/openswan/patches
parent6e1353be006d8bc561a2d801602f86d74a1a6980 (diff)
update openswan to latest upstream version and add fixes for 2.6.21 api changes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7379 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/openswan/patches')
-rw-r--r--package/openswan/patches/110-scripts.patch13
-rw-r--r--package/openswan/patches/130-linux_2.6.19_api_changes.patch12
-rw-r--r--package/openswan/patches/130-sysctl_api_change.patch16
-rw-r--r--package/openswan/patches/200-linux_pfkey_2.4.patch33
4 files changed, 17 insertions, 57 deletions
diff --git a/package/openswan/patches/110-scripts.patch b/package/openswan/patches/110-scripts.patch
index ed37920a3..a350cd123 100644
--- a/package/openswan/patches/110-scripts.patch
+++ b/package/openswan/patches/110-scripts.patch
@@ -227,15 +227,4 @@ diff -ruN openswan-2.4.7-old/programs/_startklips/_startklips.in openswan-2.4.7-
if test ! -f $ipsecversion
then
echo "kernel appears to lack IPsec support (neither CONFIG_KLIPS or CONFIG_NET_KEY are set)"
-diff -urN openswan-2.4.7/programs/_startklips/_startklips.in openswan-2.4.7.new/programs/_startklips/_startklips.in
---- openswan-2.4.7/programs/_startklips/_startklips.in 2006-11-13 21:27:18.000000000 +0100
-+++ openswan-2.4.7.new/programs/_startklips/_startklips.in 2007-04-16 11:57:45.000000000 +0200
-@@ -147,7 +147,7 @@
- then
- # attach the interface and bring it up
- ipsec tncfg --attach --virtual $virt --physical $phys
-- ifconfig $virt inet $addr $type $otheraddr netmask $mask $mtu
-+ ifconfig $virt $addr $type $otheraddr netmask $mask $mtu
- fi
-
- # if %defaultroute, note the facts
+
diff --git a/package/openswan/patches/130-linux_2.6.19_api_changes.patch b/package/openswan/patches/130-linux_2.6.19_api_changes.patch
deleted file mode 100644
index a9e680186..000000000
--- a/package/openswan/patches/130-linux_2.6.19_api_changes.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -bruN openswan-2.4.7-old/linux/net/ipsec/pfkey_v2.c openswan-2.4.7-new/linux/net/ipsec/pfkey_v2.c
---- openswan-2.4.7-old/linux/net/ipsec/pfkey_v2.c 2006-10-10 22:43:28.000000000 +0200
-+++ openswan-2.4.7-new/linux/net/ipsec/pfkey_v2.c 2006-12-15 17:29:02.000000000 +0100
-@@ -1503,7 +1503,7 @@
-
- printk(KERN_INFO "klips_info:pfkey_cleanup: "
- "shutting down PF_KEY domain sockets.\n");
-- error |= sock_unregister(PF_KEY);
-+ sock_unregister(PF_KEY);
-
- error |= supported_remove_all(SADB_SATYPE_AH);
- error |= supported_remove_all(SADB_SATYPE_ESP);
diff --git a/package/openswan/patches/130-sysctl_api_change.patch b/package/openswan/patches/130-sysctl_api_change.patch
new file mode 100644
index 000000000..e01b94ed8
--- /dev/null
+++ b/package/openswan/patches/130-sysctl_api_change.patch
@@ -0,0 +1,16 @@
+diff -ur openswan.old/linux/net/ipsec/sysctl_net_ipsec.c openswan.dev/linux/net/ipsec/sysctl_net_ipsec.c
+--- openswan.old/linux/net/ipsec/sysctl_net_ipsec.c 2004-07-10 21:11:18.000000000 +0200
++++ openswan.dev/linux/net/ipsec/sysctl_net_ipsec.c 2007-05-28 22:40:57.001031592 +0200
+@@ -130,7 +130,11 @@
+
+ int ipsec_sysctl_register(void)
+ {
+- ipsec_table_header = register_sysctl_table(ipsec_root_table, 0);
++#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,20)
++ ipsec_table_header = register_sysctl_table(ipsec_root_table);
++#else
++ ipsec_table_header = register_sysctl_table(ipsec_root_table, 0);
++#endif
+ if (!ipsec_table_header) {
+ return -ENOMEM;
+ }
diff --git a/package/openswan/patches/200-linux_pfkey_2.4.patch b/package/openswan/patches/200-linux_pfkey_2.4.patch
deleted file mode 100644
index 15f9fa724..000000000
--- a/package/openswan/patches/200-linux_pfkey_2.4.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-diff -urN openswan-2.4.7.old/linux/net/ipsec/pfkey_v2.c openswan-2.4.7/linux/net/ipsec/pfkey_v2.c
---- openswan-2.4.7.old/linux/net/ipsec/pfkey_v2.c 2007-01-03 11:11:04.645909731 +0000
-+++ openswan-2.4.7/linux/net/ipsec/pfkey_v2.c 2007-01-03 11:14:54.482143945 +0000
-@@ -119,7 +119,9 @@
- #ifdef NETDEV_23
- .family = PF_KEY,
- .create = pfkey_create,
-+#ifdef NET_26
- .owner = THIS_MODULE,
-+#endif
- #else
- PF_KEY,
- pfkey_create
-@@ -129,7 +131,9 @@
- struct proto_ops SOCKOPS_WRAPPED(pfkey_ops) = {
- #ifdef NETDEV_23
- family: PF_KEY,
-+#ifdef NET_26
- owner: THIS_MODULE,
-+#endif
- release: pfkey_release,
- bind: sock_no_bind,
- connect: sock_no_connect,
-@@ -1559,6 +1563,9 @@
-
- /*
- * $Log: pfkey_v2.c,v $
-+ * Revision 1.97.2.11 2006/11/15 16:05:57 paul
-+ * fix for compiling on 2.4. kernels by Matthias Haas.
-+ *
- * Revision 1.97.2.10 2006/10/10 20:43:28 paul
- * Add family/create/owner for pfkey_family_ops. This fixes bug #671
- *