From owner-svn-src-all@freebsd.org Thu May 19 19:51:40 2016 Return-Path: Delivered-To: svn-src-all@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 CA95DB3FD9D; Thu, 19 May 2016 19:51:40 +0000 (UTC) (envelope-from gnn@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 8D90D13D7; Thu, 19 May 2016 19:51:40 +0000 (UTC) (envelope-from gnn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4JJpdtS087524; Thu, 19 May 2016 19:51:39 GMT (envelope-from gnn@FreeBSD.org) Received: (from gnn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4JJpdYQ087521; Thu, 19 May 2016 19:51:39 GMT (envelope-from gnn@FreeBSD.org) Message-Id: <201605191951.u4JJpdYQ087521@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gnn set sender to gnn@FreeBSD.org using -f From: "George V. Neville-Neil" Date: Thu, 19 May 2016 19:51:39 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r300226 - in head: cddl/contrib/dtracetoolkit cddl/usr.sbin cddl/usr.sbin/dtruss share/dtrace share/dtrace/toolkit X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 May 2016 19:51:40 -0000 Author: gnn Date: Thu May 19 19:51:39 2016 New Revision: 300226 URL: https://svnweb.freebsd.org/changeset/base/300226 Log: Remove the old version of the DTraceToolkit from the source tree. The DTraceToolkit is part of the Open DTrace effort and is supported on FreeBSD as a port (sysutils/DTraceToolkit) which has been updated to properly track toolkit development upstream. Sponsored by: DARPA, AFRL Deleted: head/cddl/contrib/dtracetoolkit/ head/cddl/usr.sbin/dtruss/ head/share/dtrace/toolkit/ Modified: head/cddl/usr.sbin/Makefile head/share/dtrace/Makefile head/share/dtrace/README Modified: head/cddl/usr.sbin/Makefile ============================================================================== --- head/cddl/usr.sbin/Makefile Thu May 19 19:27:33 2016 (r300225) +++ head/cddl/usr.sbin/Makefile Thu May 19 19:51:39 2016 (r300226) @@ -3,7 +3,6 @@ .include SUBDIR= ${_dtrace} \ - ${_dtruss} \ ${_lockstat} \ ${_plockstat} \ ${_tests} \ @@ -23,14 +22,12 @@ _zhack= zhack .if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386" _dtrace= dtrace -_dtruss= dtruss _lockstat= lockstat _plockstat= plockstat .endif .if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "arm" _dtrace= dtrace -_dtruss= dtruss _lockstat= lockstat .endif @@ -40,7 +37,6 @@ _dtrace= dtrace .if ${MACHINE_CPUARCH} == "powerpc" _dtrace= dtrace -_dtruss= dtruss _lockstat= lockstat .endif Modified: head/share/dtrace/Makefile ============================================================================== --- head/share/dtrace/Makefile Thu May 19 19:27:33 2016 (r300225) +++ head/share/dtrace/Makefile Thu May 19 19:51:39 2016 (r300226) @@ -6,12 +6,6 @@ .include -SUBDIR= ${_toolkit} - -.if ${MK_CDDL} != "no" -_toolkit= toolkit -.endif - SCRIPTS= blocking \ disklatency \ disklatencycmd \ Modified: head/share/dtrace/README ============================================================================== --- head/share/dtrace/README Thu May 19 19:27:33 2016 (r300225) +++ head/share/dtrace/README Thu May 19 19:51:39 2016 (r300226) @@ -1,11 +1,5 @@ $FreeBSD$ -This directory contains scripts for use with the DTrace system. The -toolkit/ directory installs the latest vendor import of Brendan -Gregg's DTraceToolkit while the other files and directories -contain code generated by the FreeBSD Project for use with DTrace on -FreeBSD. - -NOTE: Do not add new scripts to the toolkit directory. New DTraceToolkit -scripts should be send to the maintainer of the toolkit and then brought -back into FreeBSD via future vendor imports. +This directory contains scripts for use with the DTrace system. +These files and directories contain code generated by the FreeBSD +Project for use with DTrace on FreeBSD.