aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/fdc/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* 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