From owner-freebsd-arm@freebsd.org Sun Mar 12 16:49:06 2017 Return-Path: Delivered-To: freebsd-arm@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BE9E6D096DC for ; Sun, 12 Mar 2017 16:49:06 +0000 (UTC) (envelope-from freebsd-arm@dino.sk) Received: from mailhost.netlabit.sk (mailhost.netlabit.sk [84.245.65.72]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 570AB1301 for ; Sun, 12 Mar 2017 16:49:05 +0000 (UTC) (envelope-from freebsd-arm@dino.sk) Received: from zeta.dino.sk (fw3.dino.sk [84.245.95.254]) (AUTH: LOGIN milan) by mailhost.netlabit.sk with ESMTPA; Sun, 12 Mar 2017 17:43:53 +0100 id 00F4BE72.58C57AC9.0000D505 Date: Sun, 12 Mar 2017 17:43:53 +0100 From: Milan Obuch To: freebsd-arm@freebsd.org Subject: Re: FreeBSD on Pine64 experience Message-ID: <20170312174353.13e1110d@zeta.dino.sk> In-Reply-To: <20170224182831.76c15809@zeta.dino.sk> References: <20170220124619.7f04ad6a@zeta.dino.sk> <20170224182831.76c15809@zeta.dino.sk> X-Mailer: Claws Mail 3.14.1 (GTK+ 2.24.29; i386-portbld-freebsd10.3) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2017 16:49:06 -0000 [ snip ] > > Originally it was 12.0-CURRENT # - does anybody > > know where this revision number is being lost? Could it be somehow > > caused by fact my src tree was 'svn checkout'ed on another machine > > (i386)? > > > > Well, I can not verify my theory - I am not able to do svn checkout > into nfs mounted directory from arm64 and armv6 systems (nfsd runs on > i386 system). Maybe it just could not work this way... > This problem is solved, discussion was on hackers mailing list, basically mount option nolockd was the clue. However, on Pine64, I am getting now occasional errors pid 12421 (sh), uid 0, was killed: text file modification preventing me to rebuild some port or source if tree is mounted over nfs. I remember mentioning on some mailing list it could be related to nfs, today I decide to use HDD attached via USB for ports tree and no error occured. So this definitely means there is something in nfs code, probably arm64 specific as I did not see something like this on arm system, which causes this error. I will try to do another full rebuild with /usr/src and /usr/obj located on local USB attached HDD to see if there is any difference. My svn revision is r314342 currently, there is some discrepancy now however, as I have kernel slightly newer than world. Another note - I upgraded misc/mc port today, and I see something strange. See: # pkg check -d -a Checking all packages: 100% mc is missing a required shared library: libglib-2.0.so.0 mc is missing a required shared library: libssh2.so.1 mc is missing a required shared library: libintl.so.8 # ldd /usr/local/bin/mc /usr/local/bin/mc: libncursesw.so.8 => /lib/libncursesw.so.8 (0x4011c000) libssh2.so.1 => /usr/local/lib/libssh2.so.1 (0x4017c000) libglib-2.0.so.0 => /usr/local/lib/libglib-2.0.so.0 (0x401b1000) libintl.so.8 => /usr/local/lib/libintl.so.8 (0x402b1000) libc.so.7 => /lib/libc.so.7 (0x402ca000) libz.so.6 => /lib/libz.so.6 (0x40452000) libssl.so.8 => /usr/lib/libssl.so.8 (0x40477000) libcrypto.so.8 => /lib/libcrypto.so.8 (0x404ea000) libiconv.so.2 => /usr/local/lib/libiconv.so.2 (0x406ba000) libpcre.so.1 => /usr/local/lib/libpcre.so.1 (0x407c2000) libthr.so.3 => /lib/libthr.so.3 (0x4084e000) # ll /usr/local/lib/libglib-2.0.so.0 lrwxr-xr-x 1 root wheel 23 Feb 17 20:13 /usr/local/lib/libglib-2.0.so.0@ -> libglib-2.0.so.0.4600.2 # ll /usr/local/lib/libintl.so.8 lrwxr-xr-x 1 root wheel 16 Feb 17 00:00 /usr/local/lib/libintl.so.8@ -> libintl.so.8.1.5 # ll /usr/local/lib/libssh2.so.1 lrwxr-xr-x 1 root wheel 16 Feb 17 20:28 /usr/local/lib/libssh2.so.1@ -> libssh2.so.1.0.1 And mc seems to be just working... rebuilding misc/mc does not change the situation. Regards, Milan