[Bug 192031] [ctl] link_elf_obj: symbol icl_pdu_new_bhs undefined

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Fri Jul 25 09:29:48 UTC 2014


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192031

--- Comment #1 from Nils Beyer <nbe at renzel.net> ---
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.


More information about the freebsd-bugs mailing list