From owner-freebsd-arm@FreeBSD.ORG Wed Sep 25 14:42:59 2013 Return-Path: Delivered-To: freebsd-arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 22EFC54F for ; Wed, 25 Sep 2013 14:42:59 +0000 (UTC) (envelope-from george@m5p.com) Received: from mailhost.m5p.com (ip-2-1-0-2.r03.asbnva02.us.ce.gin.ntt.net [IPv6:2001:418:0:5000::16]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B74AC2AA9 for ; Wed, 25 Sep 2013 14:42:58 +0000 (UTC) Received: from m5p.com (wonderland.m5p.com [IPv6:2001:418:3fd::19]) by mailhost.m5p.com (8.14.5/8.14.5) with ESMTP id r8PEgqOu028653 for ; Wed, 25 Sep 2013 10:42:57 -0400 (EDT) (envelope-from george@m5p.com) Received: (from george@localhost) by m5p.com (8.14.7/8.13.7/Submit) id r8PEgq5J013369; Wed, 25 Sep 2013 10:42:52 -0400 (EDT) Date: Wed, 25 Sep 2013 10:42:52 -0400 (EDT) Message-Id: <201309251442.r8PEgq5J013369@m5p.com> From: george+freebsd@m5p.com To: freebsd-arm@freebsd.org Subject: Raspberry Pi crashes in random() X-Scanned-By: MIMEDefang 2.73 X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.2.7 (mailhost.m5p.com [IPv6:2001:418:3fd::f7]); Wed, 25 Sep 2013 10:42:57 -0400 (EDT) X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Sep 2013 14:42:59 -0000 I'm getting segmentation faults in libc's "random" when called from fc-cache and fc-list and friends from the x11/fontconfig port. Is anyone else seeing this? Would copies of the core dumps help? Separately, my RPi is getting regular fatal kernel mode prefetch abort at 0x201dcab0 crashes while I'm trying to build print/cups. You can see a whole bunch of them at http://www.m5p.com/~george/pi/. They all have the same call traceback and crash at the same address, though with different register values. -- George /usr/src svn info: Path: . Working Copy Root Path: /ad4s1/usr/src URL: svn://svnmirror/base/head Relative URL: ^/head Repository Root: svn://svnmirror/base Repository UUID: ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f Revision: 255361 Node Kind: directory Schedule: normal Last Changed Author: andrew Last Changed Rev: 255361 Last Changed Date: 2013-09-07 10:04:10 -0400 (Sat, 07 Sep 2013) /usr/src svn diff: Index: sys/arm/conf/RPI-B =================================================================== --- sys/arm/conf/RPI-B (revision 255361) +++ sys/arm/conf/RPI-B (working copy) @@ -66,11 +66,11 @@ device pty # Comment following lines for boot console on serial port -device sc -device kbdmux -options SC_DFLT_FONT # compile font in -makeoptions SC_DFLT_FONT=cp437 -device ukbd +# device sc +# device kbdmux +# options SC_DFLT_FONT # compile font in +# makeoptions SC_DFLT_FONT=cp437 +# device ukbd device sdhci device mmc Index: sys/boot/common/dev_net.c =================================================================== --- sys/boot/common/dev_net.c (revision 255361) +++ sys/boot/common/dev_net.c (working copy) @@ -325,7 +325,7 @@ #endif d = socktodesc(sock); - sprintf(temp, "%6D", d->myea, ":"); + sprintf(temp, "%02x:%02x:%02x:%02x:%02x:%02x", d->myea[0], d->myea[1], d->myea[2], d->myea[3], d->myea[4], d->myea[5]); setenv("boot.netif.ip", inet_ntoa(myip), 1); setenv("boot.netif.netmask", intoa(netmask), 1); setenv("boot.netif.gateway", inet_ntoa(gateip), 1); /etc/src.conf: MALLOC_PRODUCTION=yes /etc/make.conf: WITH_PKGNG=yes MALLOC_PRODUCTION=yes # added by use.perl 2013-08-20 10:11:49 PERL_VERSION=5.14.4 /usr/ports svn info: Path: . Working Copy Root Path: /usr/local/pi/ports URL: svn://svnmirror/ports/head Relative URL: ^/head Repository Root: svn://svnmirror/ports Repository UUID: 35697150-7ecd-e111-bb59-0022644237b5 Revision: 326306 Node Kind: directory Schedule: normal Last Changed Author: tj Last Changed Rev: 326306 Last Changed Date: 2013-09-04 14:04:48 -0400 (Wed, 04 Sep 2013)