aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/fdc
Commit message (Collapse)AuthorAgeFilesLines
* Remove residual blank line at start of MakefileWarner Losh2024-07-151-1/+0
| | | | | | | This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
* sys: Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-161-1/+0
| | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
* pccard: Remove fdc(4) PC Card attachment pointWarner Losh2021-01-081-3/+2
| | | | | | Remove PC Card attachemnt point for fdc. Relnotes: Yes
* Remove the last vestiges of FDC_DEBUG & FD_DEBUGSevan Janiyan2017-04-071-6/+0
| | | | | | | | | | | | | | | FDC_DEBUG is not referenced in any c or header files but traces of it still remain in other files. PR: 105608 Reported by: Eugene Grosbein <ports AT grosbein DOT net> Reviewed by: imp Approved by: bcr (mentor) MFC after: 7 days Differential Revision: https://reviews.freebsd.org/D10303 Notes: svn path=/head/; revision=316615
* 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 pc98 support completely.Yoshihiro Takahashi2017-01-281-4/+0
| | | | | | | | | I thank all developers and contributors for pc98. Relnotes: yes Notes: svn path=/head/; revision=312910
* Merge the PC98 fdc(4) driver into the MI driver. While here, replaceJohn Baldwin2014-09-251-2/+1
| | | | | | | | | | the magic numbers used with NE7CMD_SPECIFY with invocations of the NE7_SPEC_x() macros. Approved by: nyan Notes: svn path=/head/; revision=272129
* Import ACPICA 20090521.Jung-uk Kim2009-06-051-1/+0
| | | | Notes: svn path=/head/; revision=193530
* Dike out WARNS from kernel module makefiles. Kernels and modulesRuslan Ermilov2006-05-301-1/+0
| | | | | | | | | | use a different mechanism for setting warning flags, and using WARNS here only has null or negative effects. Submitted by: bde (I think it means "submitted") Notes: svn path=/head/; revision=159066
* Change a directory layout for pc98.Yoshihiro Takahashi2005-05-101-2/+2
| | | | | | | | | | | | - Move MD files into <arch>/<arch>. - Move bus dependent files into <arch>/<bus>. Rename some files to more suitable names. Repo-copied by: peter Discussed with: imp Notes: svn path=/head/; revision=146049
* Let kmod.mk touch opt_*.h files as needed.Ruslan Ermilov2004-09-041-2/+0
| | | | | | | Inspired by: imp's email Notes: svn path=/head/; revision=134748
* Fix the alpha (and others) module build by only building fdc_acpi.c onNate Lawson2004-07-161-7/+9
| | | | | | | | i386 and amd64. The only other ACPI machine (ia64) doesn't support floppy drives. Tested by: make MACHINE={pc98,i386,amd64,alpha,sparc64} Notes: svn path=/head/; revision=132260
* Add fdc_acpi to module build, bump WARNS to 2.Nate Lawson2004-07-151-2/+5
| | | | Notes: svn path=/head/; revision=132218
* - Merged from sys/dev/fdc/fdc.c revision 1.275.Yoshihiro Takahashi2004-07-081-1/+1
| | | | | | | | - Break out the cbus front end from fd.c. - Remove the pccard support because it was broken. Notes: svn path=/head/; revision=131819
* Break out the isa and pccard front ends from fdc. This is the firstWarner Losh2004-07-071-14/+2
| | | | | | | | | | | step in making this driver more attachment neutral. Others plan on adding acpi front ends. Still need to cleanup the MI part of the driver because it isn't as bus independent as it could be. Notes: svn path=/head/; revision=131767
* 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
* Unbreak the fdc module build after the repocopy of sys/isa/fd.c toPeter Pentchev2004-05-171-3/+7
| | | | | | | sys/dev/fdc/fdc.c. Notes: svn path=/head/; revision=129329
* Move adding -DPC98 to CFLAGS from each modules to sys/modules/Makefile.inc.Yoshihiro Takahashi2002-11-061-1/+0
| | | | Notes: svn path=/head/; revision=106497
* 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
* Added pc98 support.Yoshihiro Takahashi2001-09-161-0/+5
| | | | Notes: svn path=/head/; revision=83549
* Two more "oops"es here: i didn't mean to turn on fdc debugging byJoerg Wunsch2001-06-291-2/+2
| | | | | | | | default in the KLD, and to turn off pccard support, so reverse each of the flags. Also, the flags should be overridable by /etc/make.conf. Notes: svn path=/head/; revision=78969
* Duh-oh! When beautifying a comment right before my last commit, iJoerg Wunsch2001-06-291-1/+1
| | | | | | | | didn't realize that make considers a comment with just leading white space only an ``unassociated shell command''. Notes: svn path=/head/; revision=78960
* First stab at fixing resource deallocation, and implementing fdc(4) asJoerg Wunsch2001-06-291-0/+29
a KLD. Still doesn't work well except in the PCMCIA case (now if only pccardd(8) could load and unload drivers dynamically...). Mainly, it tries to find fdc0 on the PCI bus for whatever obscure reasons, but i need someone who understands driver(9) to fix this. However, it's at least already better than before, and i'm tired of maintaining too many private changes in my tree, given the large patches bde submitted. :) Idea of a KLD triggered by: Michael Reifenberger <root@nihil.plaut.de> Notes: svn path=/head/; revision=78953