From owner-svn-src-projects@freebsd.org Tue Aug 15 20:27:10 2017 Return-Path: Delivered-To: svn-src-projects@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 9EC15DC8C6E for ; Tue, 15 Aug 2017 20:27:10 +0000 (UTC) (envelope-from ngie@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 78F9983BA5; Tue, 15 Aug 2017 20:27:10 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7FKR9Dw031493; Tue, 15 Aug 2017 20:27:09 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7FKR89U031476; Tue, 15 Aug 2017 20:27:08 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201708152027.v7FKR89U031476@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Ngie Cooper Date: Tue, 15 Aug 2017 20:27:08 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r322551 - in projects/runtime-coverage/sys/boot: efi/boot1 efi/loader geli i386/boot2 i386/btx/lib i386/gptboot i386/gptzfsboot i386/loader i386/zfsboot mips/beri/loader powerpc/kboot p... X-SVN-Group: projects X-SVN-Commit-Author: ngie X-SVN-Commit-Paths: in projects/runtime-coverage/sys/boot: efi/boot1 efi/loader geli i386/boot2 i386/btx/lib i386/gptboot i386/gptzfsboot i386/loader i386/zfsboot mips/beri/loader powerpc/kboot powerpc/ofw powerpc/ps3 sp... X-SVN-Commit-Revision: 322551 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Aug 2017 20:27:10 -0000 Author: ngie Date: Tue Aug 15 20:27:07 2017 New Revision: 322551 URL: https://svnweb.freebsd.org/changeset/base/322551 Log: Disable MK_COVERAGE in sys/boot/... None of this should be compiled with MK_COVERAGE enabled, and it fails to compile with it enabled due to unresolved symbols. Modified: projects/runtime-coverage/sys/boot/efi/boot1/Makefile projects/runtime-coverage/sys/boot/efi/loader/Makefile projects/runtime-coverage/sys/boot/geli/Makefile projects/runtime-coverage/sys/boot/i386/boot2/Makefile projects/runtime-coverage/sys/boot/i386/btx/lib/Makefile projects/runtime-coverage/sys/boot/i386/gptboot/Makefile projects/runtime-coverage/sys/boot/i386/gptzfsboot/Makefile projects/runtime-coverage/sys/boot/i386/loader/Makefile projects/runtime-coverage/sys/boot/i386/zfsboot/Makefile projects/runtime-coverage/sys/boot/mips/beri/loader/Makefile projects/runtime-coverage/sys/boot/powerpc/kboot/Makefile projects/runtime-coverage/sys/boot/powerpc/ofw/Makefile projects/runtime-coverage/sys/boot/powerpc/ps3/Makefile projects/runtime-coverage/sys/boot/sparc64/loader/Makefile projects/runtime-coverage/sys/boot/userboot/ficl/Makefile projects/runtime-coverage/sys/boot/userboot/test/Makefile projects/runtime-coverage/sys/boot/userboot/userboot/Makefile Modified: projects/runtime-coverage/sys/boot/efi/boot1/Makefile ============================================================================== --- projects/runtime-coverage/sys/boot/efi/boot1/Makefile Tue Aug 15 19:29:10 2017 (r322550) +++ projects/runtime-coverage/sys/boot/efi/boot1/Makefile Tue Aug 15 20:27:07 2017 (r322551) @@ -4,6 +4,7 @@ MAN= .include +MK_COVERAGE= no MK_SSP= no PROG= boot1.sym Modified: projects/runtime-coverage/sys/boot/efi/loader/Makefile ============================================================================== --- projects/runtime-coverage/sys/boot/efi/loader/Makefile Tue Aug 15 19:29:10 2017 (r322550) +++ projects/runtime-coverage/sys/boot/efi/loader/Makefile Tue Aug 15 20:27:07 2017 (r322551) @@ -4,6 +4,7 @@ MAN= .include +MK_COVERAGE= no MK_SSP= no PROG= loader.sym Modified: projects/runtime-coverage/sys/boot/geli/Makefile ============================================================================== --- projects/runtime-coverage/sys/boot/geli/Makefile Tue Aug 15 19:29:10 2017 (r322550) +++ projects/runtime-coverage/sys/boot/geli/Makefile Tue Aug 15 20:27:07 2017 (r322551) @@ -4,6 +4,7 @@ MAN= .include +MK_COVERAGE= no MK_SSP= no LIB= geliboot Modified: projects/runtime-coverage/sys/boot/i386/boot2/Makefile ============================================================================== --- projects/runtime-coverage/sys/boot/i386/boot2/Makefile Tue Aug 15 19:29:10 2017 (r322550) +++ projects/runtime-coverage/sys/boot/i386/boot2/Makefile Tue Aug 15 20:27:07 2017 (r322551) @@ -1,6 +1,7 @@ # $FreeBSD$ .include +MK_COVERAGE= no FILES= boot boot1 boot2 Modified: projects/runtime-coverage/sys/boot/i386/btx/lib/Makefile ============================================================================== --- projects/runtime-coverage/sys/boot/i386/btx/lib/Makefile Tue Aug 15 19:29:10 2017 (r322550) +++ projects/runtime-coverage/sys/boot/i386/btx/lib/Makefile Tue Aug 15 20:27:07 2017 (r322551) @@ -1,5 +1,8 @@ # $FreeBSD$ +.include +MK_COVERAGE=no + PROG= crt0.o INTERNALPROG= MAN= Modified: projects/runtime-coverage/sys/boot/i386/gptboot/Makefile ============================================================================== --- projects/runtime-coverage/sys/boot/i386/gptboot/Makefile Tue Aug 15 19:29:10 2017 (r322550) +++ projects/runtime-coverage/sys/boot/i386/gptboot/Makefile Tue Aug 15 20:27:07 2017 (r322551) @@ -2,6 +2,9 @@ .PATH: ${.CURDIR}/../boot2 ${.CURDIR}/../common ${.CURDIR}/../../common +.include +MK_COVERAGE= no + FILES= gptboot MAN= gptboot.8 Modified: projects/runtime-coverage/sys/boot/i386/gptzfsboot/Makefile ============================================================================== --- projects/runtime-coverage/sys/boot/i386/gptzfsboot/Makefile Tue Aug 15 19:29:10 2017 (r322550) +++ projects/runtime-coverage/sys/boot/i386/gptzfsboot/Makefile Tue Aug 15 20:27:07 2017 (r322551) @@ -1,6 +1,7 @@ # $FreeBSD$ .include +MK_COVERAGE= no .PATH: ${.CURDIR}/../boot2 ${.CURDIR}/../gptboot \ ${.CURDIR}/../zfsboot ${.CURDIR}/../common \ Modified: projects/runtime-coverage/sys/boot/i386/loader/Makefile ============================================================================== --- projects/runtime-coverage/sys/boot/i386/loader/Makefile Tue Aug 15 19:29:10 2017 (r322550) +++ projects/runtime-coverage/sys/boot/i386/loader/Makefile Tue Aug 15 20:27:07 2017 (r322551) @@ -1,6 +1,7 @@ # $FreeBSD$ .include +MK_COVERAGE= no MK_SSP= no LOADER?= loader Modified: projects/runtime-coverage/sys/boot/i386/zfsboot/Makefile ============================================================================== --- projects/runtime-coverage/sys/boot/i386/zfsboot/Makefile Tue Aug 15 19:29:10 2017 (r322550) +++ projects/runtime-coverage/sys/boot/i386/zfsboot/Makefile Tue Aug 15 20:27:07 2017 (r322551) @@ -1,5 +1,8 @@ # $FreeBSD$ +.include +MK_COVERAGE= no + .PATH: ${.CURDIR}/../boot2 ${.CURDIR}/../common \ ${.CURDIR}/../../common ${.CURDIR}/../../../crypto/skein Modified: projects/runtime-coverage/sys/boot/mips/beri/loader/Makefile ============================================================================== --- projects/runtime-coverage/sys/boot/mips/beri/loader/Makefile Tue Aug 15 19:29:10 2017 (r322550) +++ projects/runtime-coverage/sys/boot/mips/beri/loader/Makefile Tue Aug 15 20:27:07 2017 (r322551) @@ -30,6 +30,7 @@ # $FreeBSD$ .include +MK_COVERAGE= no MK_SSP= no MAN= Modified: projects/runtime-coverage/sys/boot/powerpc/kboot/Makefile ============================================================================== --- projects/runtime-coverage/sys/boot/powerpc/kboot/Makefile Tue Aug 15 19:29:10 2017 (r322550) +++ projects/runtime-coverage/sys/boot/powerpc/kboot/Makefile Tue Aug 15 20:27:07 2017 (r322551) @@ -1,6 +1,7 @@ # $FreeBSD$ .include +MK_COVERAGE= no MK_SSP= no MAN= Modified: projects/runtime-coverage/sys/boot/powerpc/ofw/Makefile ============================================================================== --- projects/runtime-coverage/sys/boot/powerpc/ofw/Makefile Tue Aug 15 19:29:10 2017 (r322550) +++ projects/runtime-coverage/sys/boot/powerpc/ofw/Makefile Tue Aug 15 20:27:07 2017 (r322551) @@ -1,6 +1,7 @@ # $FreeBSD$ .include +MK_COVERAGE= no MK_SSP= no MAN= Modified: projects/runtime-coverage/sys/boot/powerpc/ps3/Makefile ============================================================================== --- projects/runtime-coverage/sys/boot/powerpc/ps3/Makefile Tue Aug 15 19:29:10 2017 (r322550) +++ projects/runtime-coverage/sys/boot/powerpc/ps3/Makefile Tue Aug 15 20:27:07 2017 (r322551) @@ -1,6 +1,7 @@ # $FreeBSD$ .include +MK_COVERAGE= no MK_SSP= no MAN= Modified: projects/runtime-coverage/sys/boot/sparc64/loader/Makefile ============================================================================== --- projects/runtime-coverage/sys/boot/sparc64/loader/Makefile Tue Aug 15 19:29:10 2017 (r322550) +++ projects/runtime-coverage/sys/boot/sparc64/loader/Makefile Tue Aug 15 20:27:07 2017 (r322551) @@ -1,6 +1,7 @@ # $FreeBSD$ .include +MK_COVERAGE= no MK_SSP= no MAN= Modified: projects/runtime-coverage/sys/boot/userboot/ficl/Makefile ============================================================================== --- projects/runtime-coverage/sys/boot/userboot/ficl/Makefile Tue Aug 15 19:29:10 2017 (r322550) +++ projects/runtime-coverage/sys/boot/userboot/ficl/Makefile Tue Aug 15 20:27:07 2017 (r322551) @@ -1,6 +1,7 @@ # $FreeBSD$ # .include +MK_COVERAGE= no MK_SSP= no .PATH: ${.CURDIR}/../../ficl Modified: projects/runtime-coverage/sys/boot/userboot/test/Makefile ============================================================================== --- projects/runtime-coverage/sys/boot/userboot/test/Makefile Tue Aug 15 19:29:10 2017 (r322550) +++ projects/runtime-coverage/sys/boot/userboot/test/Makefile Tue Aug 15 20:27:07 2017 (r322551) @@ -4,6 +4,7 @@ MAN= .include +MK_COVERAGE= no MK_SSP= no PROG= test Modified: projects/runtime-coverage/sys/boot/userboot/userboot/Makefile ============================================================================== --- projects/runtime-coverage/sys/boot/userboot/userboot/Makefile Tue Aug 15 19:29:10 2017 (r322550) +++ projects/runtime-coverage/sys/boot/userboot/userboot/Makefile Tue Aug 15 20:27:07 2017 (r322551) @@ -3,6 +3,7 @@ MAN= .include +MK_COVERAGE= no MK_SSP= no SHLIB_NAME= userboot.so