From owner-freebsd-isdn@FreeBSD.ORG Mon Mar 5 18:01:53 2012 Return-Path: Delivered-To: freebsd-isdn@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 204CF106564A for ; Mon, 5 Mar 2012 18:01:53 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe04.c2i.net [212.247.154.98]) by mx1.freebsd.org (Postfix) with ESMTP id A30D38FC0C for ; Mon, 5 Mar 2012 18:01:52 +0000 (UTC) X-T2-Spam-Status: No, hits=-1.0 required=5.0 tests=ALL_TRUSTED Received: from [176.74.212.201] (account mc467741@c2i.net HELO laptop002.hselasky.homeunix.org) by mailfe04.swip.net (CommuniGate Pro SMTP 5.4.2) with ESMTPA id 246788143; Mon, 05 Mar 2012 19:01:44 +0100 From: Hans Petter Selasky To: Michael Reifenberger Date: Mon, 5 Mar 2012 19:00:08 +0100 User-Agent: KMail/1.13.5 (FreeBSD/8.3-PRERELEASE; KDE/4.4.5; amd64; ; ) References: <201202291920.43608.hselasky@c2i.net> In-Reply-To: X-Face: 'mmZ:T{)),Oru^0c+/}w'`gU1$ubmG?lp!=R4Wy\ELYo2)@'UZ24N@d2+AyewRX}mAm; Yp |U[@, _z/([?1bCfM{_"B<.J>mICJCHAzzGHI{y7{%JVz%R~yJHIji`y>Y}k1C4TfysrsUI -%GU9V5]iUZF&nRn9mJ'?&>O MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201203051900.08728.hselasky@c2i.net> Cc: freebsd-isdn@freebsd.org Subject: Re: ISDN4BSD (HPS version) is going into ports X-BeenThere: freebsd-isdn@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Using ISDN with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Mar 2012 18:01:53 -0000 On Monday 05 March 2012 11:13:31 Michael Reifenberger wrote: > On Wed, 29 Feb 2012, Hans Petter Selasky wrote: > ... > > > kldload i4b > > Here I get under -current(r230808): > (fs)(root) kldload i4b > kldload: can't load i4b: Exec format error > > dmesg shows: > ... > link_elf_obj: symbol dss1_lite_process undefined > linker_load_file: Unsupported file type > ... Could you try the following patch: Index: module/Makefile =================================================================== --- module/Makefile (revision 2219) +++ module/Makefile (working copy) @@ -84,8 +84,11 @@ SRCS+= iloop.c .endif -.if !defined(HAVE_YEALINK_DRIVER) +.if defined(HAVE_YEALINK_DRIVER) SRCS+= yealink.c +.endif + +.if defined(HAVE_ISDN_LOOP_DRIVER) || defined(HAVE_YEALINK_DRIVER) SRCS+= dss1_lite.c dss1_lite_l1if.c .endif --HPS