-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
osdl.org!shemminger
committed
Apr 15, 2004
1 parent
86fdf0e
commit aba5acd
Showing
137 changed files
with
31,144 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
TC_CONFIG_DIFFSERV=n | ||
TC_CONFIG_ATM=n |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
# Path to parent kernel include files directory | ||
DESTDIR= | ||
SBINDIR=/sbin | ||
CONFDIR=/etc/iproute2 | ||
DOCDIR=/usr/doc/iproute2 | ||
|
||
KERNEL_INCLUDE=/usr/src/linux/include | ||
LIBC_INCLUDE=/usr/include | ||
|
||
DEFINES= -DRESOLVE_HOSTNAMES | ||
|
||
#options if you have a bind>=4.9.4 libresolv (or, maybe, glibc) | ||
LDLIBS=-lresolv | ||
ADDLIB= | ||
|
||
#options if you compile with libc5, and without a bind>=4.9.4 libresolv | ||
#LDLIBS= | ||
#ADDLIB=inet_ntop.o inet_pton.o | ||
|
||
#options for decnet | ||
ADDLIB+=dnet_ntop.o dnet_pton.o | ||
|
||
#options for ipx | ||
ADDLIB+=ipx_ntop.o ipx_pton.o | ||
|
||
ifeq ($(LIBC_INCLUDE)/socketbits.h,$(wildcard $(LIBC_INCLUDE)/socketbits.h)) | ||
ifeq ($(LIBC_INCLUDE)/net/if_packet.h,$(wildcard $(LIBC_INCLUDE)/net/if_packet.h)) | ||
GLIBCFIX=-I../include-glibc -include ../include-glibc/glibc-bugs.h | ||
endif | ||
endif | ||
ifeq ($(LIBC_INCLUDE)/bits/socket.h,$(wildcard $(LIBC_INCLUDE)/bits/socket.h)) | ||
GLIBCFIX=-I../include-glibc -I/usr/include/db3 -include ../include-glibc/glibc-bugs.h | ||
endif | ||
|
||
|
||
CC = gcc | ||
CCOPTS = -D_GNU_SOURCE -O2 -Wstrict-prototypes -Wall -g | ||
CFLAGS = $(CCOPTS) $(GLIBCFIX) -I$(KERNEL_INCLUDE) -I../include $(DEFINES) | ||
|
||
LDLIBS += -L../lib -lnetlink -lutil | ||
|
||
SUBDIRS=lib ip tc misc | ||
|
||
LIBNETLINK=../lib/libnetlink.a ../lib/libutil.a | ||
|
||
all: check-kernel | ||
@set -e; \ | ||
for i in $(SUBDIRS); \ | ||
do $(MAKE) -C $$i; done | ||
|
||
check-kernel: | ||
ifeq ($(KERNEL_INCLUDE),) | ||
@echo "Please, set correct KERNEL_INCLUDE"; false | ||
else | ||
@set -e; \ | ||
if [ ! -r $(KERNEL_INCLUDE)/linux/autoconf.h ]; then \ | ||
echo "Please, compile the kernel first"; false; fi | ||
endif | ||
|
||
install: all | ||
install -m 0755 -d $(DESTDIR)$(SBINDIR) | ||
install -m 0755 -d $(DESTDIR)$(CONFDIR) | ||
install -m 0755 -d $(DESTDIR)$(DOCDIR)/examples | ||
install -m 0755 -d $(DESTDIR)$(DOCDIR)/examples/diffserv | ||
install -m 0644 README.iproute2+tc $(shell find examples -type f -maxdepth 1) $(DESTDIR)$(DOCDIR)/examples | ||
install -m 0644 $(shell echo examples/diffserv/*) $(DESTDIR)$(DOCDIR)/examples/diffserv | ||
@for i in $(SUBDIRS) doc; do $(MAKE) -C $$i install; done | ||
@cd etc/iproute2; for i in *; do \ | ||
if [ ! -e $(DESTDIR)$(CONFDIR)/$$i ]; then \ | ||
echo install -m 0644 $$i $(DESTDIR)$(CONFDIR); \ | ||
install -m 0644 $$i $(DESTDIR)$(CONFDIR); fi; done | ||
|
||
clean: | ||
for i in $(SUBDIRS) doc; \ | ||
do $(MAKE) -C $$i clean; done | ||
|
||
.EXPORT_ALL_VARIABLES: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
File: tcp_diag.c | ||
Status: desired for kernels < 2.4.17 | ||
not needed for kernels >= 2.4.17 | ||
Description: adds tcpdiag facility to kernel to accelerate ss utility | ||
and pidentd | ||
Side effects: none | ||
|
Oops, something went wrong.