From owner-svn-ports-head@freebsd.org Mon Jun 13 19:12:51 2016 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 AF203AF2A92; Mon, 13 Jun 2016 19:12:51 +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 mx1.freebsd.org (Postfix) with ESMTPS id 7F9D526CC; Mon, 13 Jun 2016 19:12:51 +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 u5DJCoMV044704; Mon, 13 Jun 2016 19:12:50 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5DJCo9x044702; Mon, 13 Jun 2016 19:12:50 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201606131912.u5DJCo9x044702@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Mon, 13 Jun 2016 19:12:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416859 - in head/emulators/qemu-sbruno: . files X-SVN-Group: ports-head 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.22 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: Mon, 13 Jun 2016 19:12:51 -0000 Author: sbruno Date: Mon Jun 13 19:12:50 2016 New Revision: 416859 URL: https://svnweb.freebsd.org/changeset/ports/416859 Log: Use correct ELF magic to run powerpc64 binaries. PR: 209983 Submitted by: jbeich Modified: head/emulators/qemu-sbruno/Makefile head/emulators/qemu-sbruno/files/qemu_user_static.in Modified: head/emulators/qemu-sbruno/Makefile ============================================================================== --- head/emulators/qemu-sbruno/Makefile Mon Jun 13 19:05:31 2016 (r416858) +++ head/emulators/qemu-sbruno/Makefile Mon Jun 13 19:12:50 2016 (r416859) @@ -3,6 +3,7 @@ PORTNAME= qemu PORTVERSION= 2.6.50.g20160611 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= GH \ LOCAL/nox:dtc \ Modified: head/emulators/qemu-sbruno/files/qemu_user_static.in ============================================================================== --- head/emulators/qemu-sbruno/files/qemu_user_static.in Mon Jun 13 19:05:31 2016 (r416858) +++ head/emulators/qemu-sbruno/files/qemu_user_static.in Mon Jun 13 19:12:50 2016 (r416859) @@ -98,7 +98,7 @@ list_cmd="${BINMISCCTL} list" interpreter=${QEMU_DIR}/${QEMU_PREFIX}ppc64${QEMU_SUFFIX} if [ -x "${interpreter}" ]; then ${BINMISCCTL} add powerpc64 --interpreter "${interpreter}" \ - --magic "\x7f\x45\x4c\x46\x01\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x15" \ + --magic "\x7f\x45\x4c\x46\x02\x02\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x15" \ --mask "\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff" \ --size 20 --set-enabled else