Remove the last vestiges of FDC_DEBUG & FD_DEBUGFDC_DEBUG is not referenced in any c or header files but traces of itstill remain in other files.PR: 105608Reported by: Eugene Grosbein <ports AT
Remove the last vestiges of FDC_DEBUG & FD_DEBUGFDC_DEBUG is not referenced in any c or header files but traces of itstill remain in other files.PR: 105608Reported by: Eugene Grosbein <ports AT grosbein DOT net>Reviewed by: impApproved by: bcr (mentor)MFC after: 7 daysDifferential Revision: https://reviews.freebsd.org/D10303
show more ...
sys/modules: normalize .CURDIR-relative paths to SRCTOPThis simplifies make output/logicTested with: `cd sys/modules; make ALL_MODULES=` on amd64MFC after: 1 monthSponsored by: Dell EMC Isilon
Remove pc98 support completely.I thank all developers and contributors for pc98.Relnotes: yes
Merge the PC98 fdc(4) driver into the MI driver. While here, replacethe magic numbers used with NE7CMD_SPECIFY with invocations of theNE7_SPEC_x() macros.Approved by: nyan
Import ACPICA 20090521.
Dike out WARNS from kernel module makefiles. Kernels and modulesuse a different mechanism for setting warning flags, and usingWARNS here only has null or negative effects.Submitted by: bde (I th
Dike out WARNS from kernel module makefiles. Kernels and modulesuse a different mechanism for setting warning flags, and usingWARNS here only has null or negative effects.Submitted by: bde (I think it means "submitted")
Change a directory layout for pc98. - Move MD files into <arch>/<arch>. - Move bus dependent files into <arch>/<bus>.Rename some files to more suitable names.Repo-copied by: peterDiscussed wi
Change a directory layout for pc98. - Move MD files into <arch>/<arch>. - Move bus dependent files into <arch>/<bus>.Rename some files to more suitable names.Repo-copied by: peterDiscussed with: imp
Let kmod.mk touch opt_*.h files as needed.Inspired by: imp's email
Fix the alpha (and others) module build by only building fdc_acpi.c oni386 and amd64. The only other ACPI machine (ia64) doesn't supportfloppy drives. Tested by: make MACHINE={pc98,i386,amd64,al
Fix the alpha (and others) module build by only building fdc_acpi.c oni386 and amd64. The only other ACPI machine (ia64) doesn't supportfloppy drives. Tested by: make MACHINE={pc98,i386,amd64,alpha,sparc64}
Add fdc_acpi to module build, bump WARNS to 2.
- Merged from sys/dev/fdc/fdc.c revision 1.275.- Break out the cbus front end from fd.c.- Remove the pccard support because it was broken.
Break out the isa and pccard front ends from fdc. This is the firststep in making this driver more attachment neutral. Others plan onadding acpi front ends.Still need to cleanup the MI part of
Break out the isa and pccard front ends from fdc. This is the firststep in making this driver more attachment neutral. Others plan onadding acpi front ends.Still need to cleanup the MI part of the driver because it isn't asbus independent as it could be.
Move to generating pccarddevs.h on the fly, both for the kernel andthe modules.Also generate usbdevs.h automatically now, but a non-kernel file isstopping that at the moment.
Unbreak the fdc module build after the repocopy of sys/isa/fd.c tosys/dev/fdc/fdc.c.
Move adding -DPC98 to CFLAGS from each modules to sys/modules/Makefile.inc.
Drop <bsd.man.mk> support from <bsd.kmod.mk>.Not objected to by: -current
Added pc98 support.
Two more "oops"es here: i didn't mean to turn on fdc debugging bydefault in the KLD, and to turn off pccard support, so reverse each ofthe flags. Also, the flags should be overridable by /etc/make
Two more "oops"es here: i didn't mean to turn on fdc debugging bydefault in the KLD, and to turn off pccard support, so reverse each ofthe flags. Also, the flags should be overridable by /etc/make.conf.
Duh-oh! When beautifying a comment right before my last commit, ididn't realize that make considers a comment with just leading whitespace only an ``unassociated shell command''.
First stab at fixing resource deallocation, and implementing fdc(4) asa KLD. Still doesn't work well except in the PCMCIA case (now if onlypccardd(8) could load and unload drivers dynamically...).
First stab at fixing resource deallocation, and implementing fdc(4) asa KLD. Still doesn't work well except in the PCMCIA case (now if onlypccardd(8) could load and unload drivers dynamically...). Mainly, ittries to find fdc0 on the PCI bus for whatever obscure reasons, but ineed someone who understands driver(9) to fix this. However, it's at leastalready better than before, and i'm tired of maintaining too many privatechanges in my tree, given the large patches bde submitted. :)Idea of a KLD triggered by: Michael Reifenberger <[email protected]>