summaryrefslogtreecommitdiffstats
path: root/freebsd/sys/kern/subr_autoconf.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-09-23CONFIG_INTRHOOK(9): Call handlers after bootSebastian Huber1-1/+15
This enables adding drivers on demand which use this service after initialization.
2018-09-25CONFIG_INTRHOOK(9): Port to RTEMSSebastian Huber1-0/+282
Some device drivers (e.g. MMC) need a complex intialization with working callouts. Remove the dummy CONFIG_INTRHOOK() implementation and replace it with the real one from FreeBSD. Make sure TIMEOUT(9) services work at this point. Update #3525.