Move aodv-uu to trunk/

git-svn-id: svn://svn.openwrt.org/openwrt/packages@6335 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian
2007-02-20 23:39:33 +00:00
parent 297673e165
commit db9d3fd124
6 changed files with 0 additions and 251 deletions

View File

@ -1,62 +0,0 @@
diff -urN aodv-uu-0.9.1/lnx/Makefile aodv-uu-0.9.1.new/lnx/Makefile
--- aodv-uu-0.9.1/lnx/Makefile 2005-03-17 22:37:59.000000000 +0100
+++ aodv-uu-0.9.1.new/lnx/Makefile 2006-07-25 15:46:02.000000000 +0200
@@ -30,7 +30,7 @@
KCFLAGS=-Wall -Wno-strict-aliasing -O2 $(KDEFS) $(KINC) $(XDEFS)
KCFLAGS_ARM=-Wall -O2 -D__KERNEL__ -DMODULE -nostdinc $(shell $(ARM_CC) -print-search-dirs | sed -ne 's/install: \(.*\)/-I \1include/gp') -I$(KERNEL_INC)
KCFLAGS_MIPS=-Wall -mips2 -O2 -fno-pic -mno-abicalls -mlong-calls -G0 -msoft-float -D__KERNEL__ -DMODULE -nostdinc $(shell $(MIPS_CC) -print-search-dirs | sed -ne 's/install: \(.*\)/-I \1include/gp') -I$(KERNEL_INC) $(XDEFS)
-
+endif
.PHONY: clean clean-2.4 clean-2.6 indent default
# Check for kernel version
@@ -87,5 +87,3 @@
indent:
indent -kr -i8 -ts8 -sob -l80 -ss -ncs *.c *.h
-endif
-
diff -urN aodv-uu-0.9.1/Makefile aodv-uu-0.9.1.new/Makefile
--- aodv-uu-0.9.1/Makefile 2006-07-25 15:03:49.000000000 +0200
+++ aodv-uu-0.9.1.new/Makefile 2006-07-25 15:03:59.000000000 +0200
@@ -87,7 +87,7 @@
mips: aodvd-mips kaodv-mips
endian.h:
- $(CC) $(CFLAGS) -o endian endian.c
+ gcc -o endian endian.c
./endian > endian.h
$(OBJS): %.o: %.c Makefile
@@ -138,19 +138,18 @@
@makedepend -Y./ -- $(DEFS) -- $(SRC) &>/dev/null
@makedepend -a -Y./ -- $(KDEFS) kaodv.c &>/dev/null
-install: default
- install -s -m 755 aodvd /usr/sbin/aodvd
- @if [ ! -d /lib/modules/$(KERNEL)/aodv ]; then \
- mkdir /lib/modules/$(KERNEL)/aodv; \
- fi
-
- @echo "Installing kernel module in /lib/modules/$(KERNEL)/aodv/";
- @if [ -f ./kaodv.ko ]; then \
- install -m 644 kaodv.ko /lib/modules/$(KERNEL)/aodv/kaodv.ko; \
- else \
- install -m 644 kaodv.o /lib/modules/$(KERNEL)/aodv/kaodv.o; \
- fi
- /sbin/depmod -a
+install: install-aodvd install-kaodv
+
+install-aodvd:
+ @echo "Installing aodv in $(DESTDIR)/usr/sbin";
+ install -d -m0755 $(DESTDIR)/usr/sbin/
+ install -m0755 aodvd $(DESTDIR)/usr/sbin/aodvd
+
+install-kaodv:
+ @echo "Installing kernel module in $(DESTDIR)/lib/modules/$(KERNEL)/";
+ install -d -m0644 $(DESTDIR)/lib/modules/$(KERNEL)/
+ install -m 644 lnx/kaodv.$(KMOD_SUFFIX) $(DESTDIR)/lib/modules/$(KERNEL)/kaodv.$(KMOD_SUFFIX);
+
uninstall:
rm -f /usr/sbin/aodvd
rm -rf /lib/modules/$(KERNEL)/aodv

View File

@ -1,47 +0,0 @@
diff -ruN aodv-uu-0.9.3-old/lnx/kaodv-mod.c aodv-uu-0.9.3-new/lnx/kaodv-mod.c
--- aodv-uu-0.9.3-old/lnx/kaodv-mod.c 2006-09-20 19:58:38.000000000 +0200
+++ aodv-uu-0.9.3-new/lnx/kaodv-mod.c 2006-12-16 22:08:01.000000000 +0100
@@ -19,7 +19,7 @@
* Author: Erik Nordstr<74>m, <erik.nordstrom@it.uu.se>
*
*****************************************************************************/
-#include <linux/config.h>
+#include <linux/autoconf.h>
#include <linux/version.h>
#ifdef KERNEL26
@@ -258,7 +258,11 @@
if (!(*skb))
return NF_STOLEN;
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,19)
+ ip_route_me_harder(skb, RTN_UNSPEC);
+#else
ip_route_me_harder(skb);
+#endif
}
break;
case NF_IP_POST_ROUTING:
diff -ruN aodv-uu-0.9.3-old/lnx/kaodv-queue.c aodv-uu-0.9.3-new/lnx/kaodv-queue.c
--- aodv-uu-0.9.3-old/lnx/kaodv-queue.c 2006-09-20 19:58:38.000000000 +0200
+++ aodv-uu-0.9.3-new/lnx/kaodv-queue.c 2006-12-16 22:17:16.000000000 +0100
@@ -29,6 +29,7 @@
#include <linux/spinlock.h>
#include <linux/sysctl.h>
#include <linux/proc_fs.h>
+#include <linux/version.h>
#include <net/sock.h>
#include <net/route.h>
#include <net/icmp.h>
@@ -246,7 +247,11 @@
if (!entry->skb)
goto next;
}
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,19)
+ ip_route_me_harder(&entry->skb, RTN_UNSPEC);
+#else
ip_route_me_harder(&entry->skb);
+#endif
pkts++;

View File

@ -1,15 +0,0 @@
diff -ruN aodv-uu-0.9.3-old/lnx/kaodv-netlink.c aodv-uu-0.9.3-new/lnx/kaodv-netlink.c
--- aodv-uu-0.9.3-old/lnx/kaodv-netlink.c 2006-09-20 19:58:38.000000000 +0200
+++ aodv-uu-0.9.3-new/lnx/kaodv-netlink.c 2006-12-16 22:14:14.000000000 +0100
@@ -284,7 +284,11 @@
/* RCV_SKB_FAIL(-EINVAL); */
#ifdef KERNEL26
+# if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,19)
+ if (security_netlink_recv(skb, CAP_NET_ADMIN))
+# else
if (security_netlink_recv(skb))
+# endif
RCV_SKB_FAIL(-EPERM);
#endif
//write_lock_bh(&queue_lock);

View File

@ -1,24 +0,0 @@
--- aodv-uu-0.9.3-old/main.c 2006-09-20 19:58:38.000000000 +0200
+++ aodv-uu-0.9.3/main.c 2006-12-16 22:27:36.000000000 +0100
@@ -26,6 +26,8 @@
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/stat.h>
+#include <linux/types.h>
+#include <linux/if.h>
#include <linux/sockios.h>
#include <linux/wireless.h>
#include <getopt.h>
--- aodv-uu-0.9.3-old/nl.c 2006-09-20 19:58:38.000000000 +0200
+++ aodv-uu-0.9.3/nl.c 2006-12-16 22:29:55.000000000 +0100
@@ -33,6 +33,10 @@
#include <netinet/in.h>
#include <arpa/inet.h>
#include <linux/rtnetlink.h>
+#include <linux/version.h>
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,19)
+#include <linux/if_addr.h>
+#endif
#include "defs.h"
#include "lnx/kaodv-netlink.h"