aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/ep
Commit message (Collapse)AuthorAgeFilesLines
* FCP-101: Remove ep(4).Brooks Davis2019-05-171-17/+0
| | | | | | | | | | Relnotes: yes FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md Reviewed by: jhb, imp Differential Revision: https://reviews.freebsd.org/D20230 Notes: svn path=/head/; revision=347912
* Move i386/isa/elink.[hc] to dev/ep.Konstantin Belousov2017-12-301-0/+3
| | | | | | | | | | | | | The ep(4) driver is the only consumer of the two functions from elink.c. I removed the standalone module as well, and most likely, the module metadata is not needed anywhere, but this is for later cleanup. Discussed with: imp, jhb Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=327381
* sys/modules: normalize .CURDIR-relative paths to SRCTOPEnji Cooper2017-03-041-1/+1
| | | | | | | | | | | This simplifies make output/logic Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=314651
* Remove EISA support for ep driver. Left in place EISA strings that areWarner Losh2017-02-161-1/+0
| | | | | | | | | | | still relevant (ISA cards can still be in EISA mode, and we're still ignoring those in the identify routine). Notes about cards in EISA mode have been left in the manual since they aren't relevant to EISA support, but instruct how to properly configure an ISA card in a mode when it is in a ISA bus slot. Notes: svn path=/head/; revision=313831
* Cleanup the way we include some files (in this case EISA) based onWarner Losh2015-02-181-4/+1
| | | | | | | kernel config. Also tidy up the ed options. Notes: svn path=/head/; revision=278959
* Remove dependence on source tree options. Move all kernel moduleWarner Losh2014-08-111-2/+3
| | | | | | | | | | | | | | | | | | | | | options into kern.opts.mk and change all the places where we use src.opts.mk to pull in the options. Conditionally define SYSDIR and use SYSDIR/conf/kern.opts.mk instead of a CURDIR path. Replace all instances of CURDIR/../../etc with STSDIR, but only in the affected files. As a special compatibility hack, include bsd.owm.mk at the top of kern.opts.mk to allow the bare build of sys/modules to work on older systems. If the defaults ever change between 9.x, 10.x and current for these options, however, you'll wind up with the host OS' defaults rather than the -current defaults. This hack will be removed when we no longer need to support this build scenario. Reviewed by: jhb Differential Revision: https://phabric.freebsd.org/D529 Notes: svn path=/head/; revision=269812
* Use src.opts.mk in preference to bsd.own.mk except where we need stuffWarner Losh2014-05-061-1/+1
| | | | | | | from the latter. Notes: svn path=/head/; revision=265420
* Don't build EISA by default anymore. Remove from i386 GENERIC andWarner Losh2014-04-181-0/+4
| | | | | | | | | | create an option that defaults to "no" on all platforms to not build the EISA bits. Discussed on: arch@ Notes: svn path=/head/; revision=264654
* Minor reorg to keep each bus' files on one lineWarner Losh2005-07-131-3/+4
| | | | Notes: svn path=/head/; revision=147959
* eisa attachment is safe to be in this module, both on eisa andWarner Losh2005-03-171-1/+1
| | | | | | | non-eisa configured kernels. Notes: svn path=/head/; revision=143760
* Add usbdevs.h and pccarddevs.h to the build list, as appropriate. This is ↵Warner Losh2004-06-271-1/+1
| | | | | | | needed to build as part of world or in src/sys/modules. Notes: svn path=/head/; revision=131186
* Move to generating pccarddevs.h on the fly, both for the kernel andWarner Losh2004-05-261-1/+1
| | | | | | | | | | the modules. Also generate usbdevs.h automatically now, but a non-kernel file is stopping that at the moment. Notes: svn path=/head/; revision=129740
* There's already the elink.ko module available, don't embed it here.Ruslan Ermilov2003-08-021-2/+1
| | | | | | | Reviewed by: markm Notes: svn path=/head/; revision=118364
* Move adding -DPC98 to CFLAGS from each modules to sys/modules/Makefile.inc.Yoshihiro Takahashi2002-11-061-4/+0
| | | | Notes: svn path=/head/; revision=106497
* Use a consistent style and one much closer to the rest of /usr/srcDavid E. O'Brien2001-01-061-9/+8
| | | | Notes: svn path=/head/; revision=70711
* Added '-DPC98' to CFLAGS if MACHINE == pc98.Yoshihiro Takahashi2000-12-101-0/+4
| | | | Notes: svn path=/head/; revision=69816
* Add a module makefile for if_ep.Mark Murray2000-11-241-0/+14
This is not enabled by default, as the module is missing a bunch of useful stuff (like the ability to unload). Not objected to by: mdodd Notes: svn path=/head/; revision=69126