From owner-svn-ports-head@freebsd.org Sun Jan 14 18:27:47 2018 Return-Path: Delivered-To: svn-ports-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 D02FEE7EA84; Sun, 14 Jan 2018 18:27:47 +0000 (UTC) (envelope-from sbruno@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AB1E13575; Sun, 14 Jan 2018 18:27:47 +0000 (UTC) (envelope-from sbruno@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F316F254E4; Sun, 14 Jan 2018 18:27:46 +0000 (UTC) (envelope-from sbruno@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0EIRkYB082134; Sun, 14 Jan 2018 18:27:46 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0EIRkXS082132; Sun, 14 Jan 2018 18:27:46 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201801141827.w0EIRkXS082132@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Sun, 14 Jan 2018 18:27:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458987 - in head/sysutils/devcpu-data: . files X-SVN-Group: ports-head X-SVN-Commit-Author: sbruno X-SVN-Commit-Paths: in head/sysutils/devcpu-data: . files X-SVN-Commit-Revision: 458987 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jan 2018 18:27:47 -0000 Author: sbruno Date: Sun Jan 14 18:27:46 2018 New Revision: 458987 URL: https://svnweb.freebsd.org/changeset/ports/458987 Log: sysutils/devcpu-data: Only run "cpucontrol -e" once. Submitted by: kib Sponsored by: Limelight Networks Modified: head/sysutils/devcpu-data/Makefile head/sysutils/devcpu-data/files/microcode_update.in Modified: head/sysutils/devcpu-data/Makefile ============================================================================== --- head/sysutils/devcpu-data/Makefile Sun Jan 14 18:12:37 2018 (r458986) +++ head/sysutils/devcpu-data/Makefile Sun Jan 14 18:27:46 2018 (r458987) @@ -3,6 +3,7 @@ PORTNAME= data PORTVERSION= 1.14 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= https://downloadmirror.intel.com/27431/eng/:intel \ LOCAL/sbruno:amd Modified: head/sysutils/devcpu-data/files/microcode_update.in ============================================================================== --- head/sysutils/devcpu-data/files/microcode_update.in Sun Jan 14 18:12:37 2018 (r458986) +++ head/sysutils/devcpu-data/files/microcode_update.in Sun Jan 14 18:27:46 2018 (r458987) @@ -56,13 +56,11 @@ microcode_update_start() (echo "Microcode Update Failed." && exit 1) done if [ "${microcode_cpus}" = "ALL" ]; then - for i in ${cpus}; do ${CMT} -e /dev/cpuctl${i} >/dev/null 2>&1 if [ $? -ne 0 ]; then echo "Re-evalutation of CPU flags Failed." exit 1 fi - done fi echo "Done." }