PATCH SUMMARY
	Here is a summary of the patches performed when installing Wanpipe
2.0.0.  Notice that BEFORE and AFTER blocks of code are given to ease in the
insertion of the patches.  Also note that when editing Makefile's all indented
lines must be TABed and there must be TAB's after every colon.  Examples of
before and after patch files are also included in the source tree below the
current directory.


FILE:	./fs/proc/procfs_syms.c
LINE:	22
AFTER:	X(in_group_p),
BEFORE:	X(proc_net_inode_operations),
INSERT:	X(proc_dir_inode_operations),


FILE:	./net/Config.in
LINE:	26
AFTER:	if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
	  bool 'Bridging (EXPERIMENTAL)' CONFIG_BRIDGE
	fi	
BEFORE:	bool 'Kernel/User network link driver' CONFIG_NETLINK
INSERT:	if [ "$CONFIG_MODULES" = "y" ]; then
	  bool 'WAN router' CONFIG_WAN_ROUTER
	fi


FILE:	./net/Makefile
LINE:	11
ORIGINAL:	ALL_SUB_DIRS := 802 ax25 bridge core ethernet ipv4 ipx unix appletalk netrom #decnet
CHANGED:	ALL_SUB_DIRS := 802 ax25 bridge core ethernet ipv4 ipx unix appletalk netrom router #decnet

LINE:	51
AFTER:	ifeq ($(CONFIG_AX25),y)
	SUB_DIRS += ax25
	endif
BEFORE:	L_TARGET	:= network.a	
INSERT:	ifeq ($(CONFIG_WAN_ROUTER),y)
	  ifeq ($(CONFIG_MODULES),y)
	    MOD_SUB_DIRS += router
	  endif
	endif
	

FILE:	./drivers/net/Config.in
LINE:	39
AFTER:	  tristate 'Z8530 SCC kiss emulation driver for AX.25' CONFIG_SCC
	fi
BEFORE:	#
	#	Ethernet
	#
INSERT:	#
	# WAN drivers support
	#
	if [ "$CONFIG_WAN_ROUTER" = "y" ]; then
	  bool 'WAN drivers' CONFIG_WAN_DRIVERS
	  if [ "$CONFIG_WAN_DRIVERS" = "y" ]; then
	    bool 'Sangoma WANPIPE(tm) multiprotocol cards' CONFIG_VENDOR_SANGOMA
	    if [ "$CONFIG_VENDOR_SANGOMA" = "y" ]; then
	      int  '  Maximum number of cards' CONFIG_WANPIPE_CARDS 1
	      bool '  WANPIPE X.25 support' CONFIG_WANPIPE_X25
	      bool '  WANPIPE Frame Relay support' CONFIG_WANPIPE_FR
	      bool '  WANPIPE PPP support' CONFIG_WANPIPE_PPP
	    fi
	  fi
	fi


FILE:	./drivers/net/Makefile
LINE:	517
AFTER:	else
	  ifeq ($(CONFIG_DGRS),m)
	  M_OBJS += dgrs.o
	  endif
	endif
BEFORE:	include $(TOPDIR)/Rules.make
INSERT:	ifeq ($(CONFIG_VENDOR_SANGOMA),y)
	  M_OBJS += sdladrv.o
	  M_OBJS += wanpipe.o
	  WANPIPE_OBJS = sdlamain.o
	  ifeq ($(CONFIG_WANPIPE_X25),y)
	    WANPIPE_OBJS += sdla_x25.o
	  endif
	  ifeq ($(CONFIG_WANPIPE_FR),y)
	    WANPIPE_OBJS += sdla_fr.o
	  endif
	  ifeq ($(CONFIG_WANPIPE_PPP),y)
	    WANPIPE_OBJS += sdla_ppp.o
	  endif
	endif

LINE:	599
AFTER:	dlci.o: dlci.c CONFIG
BEFORE:	dgrs.o: dgrs.c dgrs.h CONFIG
INSERT:	sdladrv.o: sdladrv.c CONFIG
 
	wanpipe.o: $(WANPIPE_OBJS)
		ld -r -o $@ $^
 
	sdlamain.o: sdlamain.c CONFIG
 
	sdla_x25.o: sdla_x25.c CONFIG
 
	sdla_fr.o: sdla_fr.c CONFIG
 
	sdla_ppp.o: sdla_ppp.c CONFIG
