From owner-svn-src-head@freebsd.org Fri Dec 22 01:46:27 2017 Return-Path: Delivered-To: svn-src-head@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 2BB84E9A83A; Fri, 22 Dec 2017 01:46:27 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EAB861AE5; Fri, 22 Dec 2017 01:46:26 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBM1kQhZ057631; Fri, 22 Dec 2017 01:46:26 GMT (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBM1kQsw057630; Fri, 22 Dec 2017 01:46:26 GMT (envelope-from kevlo@FreeBSD.org) Message-Id: <201712220146.vBM1kQsw057630@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevlo set sender to kevlo@FreeBSD.org using -f From: Kevin Lo Date: Fri, 22 Dec 2017 01:46:26 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r327075 - head/etc/rc.d X-SVN-Group: head X-SVN-Commit-Author: kevlo X-SVN-Commit-Paths: head/etc/rc.d X-SVN-Commit-Revision: 327075 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Dec 2017 01:46:27 -0000 Author: kevlo Date: Fri Dec 22 01:46:25 2017 New Revision: 327075 URL: https://svnweb.freebsd.org/changeset/base/327075 Log: Add soft float abi caching form armv7, it would allow people with old binaries to run them. Reviewed by: imp Modified: head/etc/rc.d/ldconfig Modified: head/etc/rc.d/ldconfig ============================================================================== --- head/etc/rc.d/ldconfig Thu Dec 21 23:39:00 2017 (r327074) +++ head/etc/rc.d/ldconfig Fri Dec 22 01:46:25 2017 (r327075) @@ -63,7 +63,7 @@ ldconfig_start() esac case `sysctl -n hw.machine_arch` in - armv6) + armv[67]) for i in ${ldconfig_localsoft_dirs}; do if [ -d "${i}" ]; then _files=`find ${i} -type f`