https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192031
--- Comment #1 from Nils Beyer <[email protected]> --- A possible fix that works for me: ================================================================================= Index: sys/cam/ctl/ctl_frontend.h =================================================================== --- sys/cam/ctl/ctl_frontend.h (revision 269086) +++ sys/cam/ctl/ctl_frontend.h (working copy) @@ -78,7 +78,8 @@ }; \ DECLARE_MODULE(name, name ## _mod, SI_SUB_CONFIGURE, SI_ORDER_FOURTH); \ MODULE_DEPEND(name, ctl, 1, 1, 1); \ - MODULE_DEPEND(name, cam, 1, 1, 1) + MODULE_DEPEND(name, cam, 1, 1, 1); \ + MODULE_DEPEND(name, icl, 1, 1, 1); ================================================================================= and then rebuild the "ctl" module. Fix is based on: http://seagull.teak.jp/blog/0203 -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "[email protected]"
