aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/if_ef/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Remove IPX support.Gleb Smirnoff2014-03-141-36/+0
| | | | | | | | | | | | | | IPX was a network transport protocol in Novell's NetWare network operating system from late 80s and then 90s. The NetWare itself switched to TCP/IP as default transport in 1998. Later, in this century the Novell Open Enterprise Server became successor of Novell NetWare. The last release that claimed to still support IPX was OES 2 in 2007. Routing equipment vendors (e.g. Cisco) discontinued support for IPX in 2011. Thus, IPX won't be supported in FreeBSD 11.0-RELEASE. Notes: svn path=/head/; revision=263140
* After r193232 rt_tables in vnet.h are no longer indirectly dependent onBjoern A. Zeeb2009-06-081-1/+1
| | | | | | | | | | | | the ROUTETABLES kernel option thus there is no need to include opt_route.h anymore in all consumers of vnet.h and no longer depend on it for module builds. Remove the hidden include in flowtable.h as well and leave the two explicit #includes in ip_input.c and ip_output.c. Notes: svn path=/head/; revision=193744
* Rather than using hidden includes (with cicular dependencies),Bjoern A. Zeeb2008-12-021-1/+1
| | | | | | | | | | | | | | directly include only the header files needed. This reduces the unneeded spamming of various headers into lots of files. For now, this leaves us with very few modules including vnet.h and thus needing to depend on opt_route.h. Reviewed by: brooks, gnn, des, zec, imp Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=185571
* Don't use touch when what is really meant is :> (create an empty file, orDag-Erling Smørgrav2006-08-141-4/+4
| | | | | | | | | | | truncate it if it exists) or :>> (ensure the file exists, but don't change it if it already does) Reviewed by: ru MFC after: 2 weeks Notes: svn path=/head/; revision=161283
* Move the hard-coded ETHER_* options to where they belong --Yaroslav Tykhiy2006-02-241-7/+9
| | | | | | | | | | | | | | | | inside !if defined(KERNBUILDDIR). Utilize the fact the module will support all frames by default -- it needs no ETHER_* options unless some frames need to be disabled. Fix the comment respectively. Don't forget to create fake opt_ef.h if no ETHER_* are set. MFC after: 3 days Notes: svn path=/head/; revision=155979
* Let modules use the kernel's opt_*.h files if built along withYaroslav Tykhiy2005-10-141-0/+2
| | | | | | | | | | | | | | | | | the kernel by wrapping all targets for fake opt_*.h files in .if defined(KERNBUILDDIR). Thus, such fake files won't be created at all if modules are built with the kernel. Some modules undergo cleanup like removing unused or unneeded options or .h files, without which they wouldn't build this way or the other. Reviewed by: ru Tested by: no binary changes in modules built alone Tested on: i386 sparc64 amd64 Notes: svn path=/head/; revision=151350
* Removed custom "load" and "unload" targets.Ruslan Ermilov2004-01-191-6/+0
| | | | | | | | Removed "deinstall" targets -- the idea is to provide the standard "deinstall" target. Notes: svn path=/head/; revision=124717
* Drop <bsd.man.mk> support from <bsd.kmod.mk>.Ruslan Ermilov2002-01-111-1/+0
| | | | | | | Not objected to by: -current Notes: svn path=/head/; revision=89260
* Use a consistent style and one much closer to the rest of /usr/srcDavid E. O'Brien2001-01-061-3/+3
| | | | Notes: svn path=/head/; revision=70711
* Removed garbage (CFLAGS+= ${PROTOS} was a vestige of an old way ofBruce Evans2000-09-261-2/+0
| | | | | | | configuring INET). Notes: svn path=/head/; revision=66398
* When manual pages are moved or removed, MANX should be changedSheldon Hearn2000-07-241-0/+1
| | | | | | | | | to NOMAN. Reported by: bde Notes: svn path=/head/; revision=63794
* Move the ef(4) manual page from sys/modules/if_ef to share/man/man4, asSheldon Hearn2000-07-211-1/+0
| | | | | | | discussed with bp. Notes: svn path=/head/; revision=63726
* Use .include <bsd.kmod.mk> to get to ../../*/conf/kmod.mk instead ofPeter Wemm2000-05-271-1/+1
| | | | | | | encoding the relative path. Notes: svn path=/head/; revision=60966
* Pull in sys/conf/kmod.mk, rather than /usr/share/mk/bsd.kmod.mk.Peter Wemm2000-05-041-1/+1
| | | | | | | | | | This means that the kernel can be totally self contained now and is not dependent on the last buildworld to update /usr/share/mk. This might also make it easier to build 5.x kernels on 4.0 boxes etc, assuming gensetdefs and config(8) are updated. Notes: svn path=/head/; revision=59951
* Uncomment ETHER_II frame and remove BPF related variable.Boris Popov2000-04-061-3/+1
| | | | Notes: svn path=/head/; revision=59061
* Allow if_ef driver to be compiled into kernel.Boris Popov2000-01-231-18/+9
| | | | Notes: svn path=/head/; revision=56424
* Add module for if_ef driver and make it compile.Boris Popov1999-12-131-0/+52
Notes: svn path=/head/; revision=54561