Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 25 Jul 2014 09:29:48 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-bugs@FreeBSD.org
Subject:   [Bug 192031] [ctl] link_elf_obj: symbol icl_pdu_new_bhs undefined
Message-ID:  <bug-192031-8-Zn703MsYBR@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-192031-8@https.bugs.freebsd.org/bugzilla/>
References:  <bug-192031-8@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192031

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-192031-8-Zn703MsYBR>