From owner-svn-src-all@freebsd.org Mon Jun 25 21:54:40 2018 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5A7DC1022010; Mon, 25 Jun 2018 21:54:40 +0000 (UTC) (envelope-from brd@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 0B87E8FB45; Mon, 25 Jun 2018 21:54:40 +0000 (UTC) (envelope-from brd@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 E0E3A2EE0; Mon, 25 Jun 2018 21:54:39 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5PLsdJL048186; Mon, 25 Jun 2018 21:54:39 GMT (envelope-from brd@FreeBSD.org) Received: (from brd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5PLsd1O048185; Mon, 25 Jun 2018 21:54:39 GMT (envelope-from brd@FreeBSD.org) Message-Id: <201806252154.w5PLsd1O048185@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brd set sender to brd@FreeBSD.org using -f From: Brad Davis Date: Mon, 25 Jun 2018 21:54:39 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r335647 - head/lib/geom X-SVN-Group: head X-SVN-Commit-Author: brd X-SVN-Commit-Paths: head/lib/geom X-SVN-Commit-Revision: 335647 X-SVN-Commit-Repository: base 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.26 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: Mon, 25 Jun 2018 21:54:40 -0000 Author: brd Date: Mon Jun 25 21:54:39 2018 New Revision: 335647 URL: https://svnweb.freebsd.org/changeset/base/335647 Log: Add a file missed in r335645. Approved by: brooks, allanjude (mentor) Differential Revision: https://reviews.freebsd.org/D15360 Added: head/lib/geom/Makefile.classes (contents, props changed) Added: head/lib/geom/Makefile.classes ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lib/geom/Makefile.classes Mon Jun 25 21:54:39 2018 (r335647) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +.if !defined(COMPAT_32BIT) +GEOM_CLASS_DIR?=/lib/geom +.else +GEOM_CLASS_DIR?=/usr/lib32/geom +.endif + +GEOM_CLASSES= cache +GEOM_CLASSES+= concat +.if ${MK_OPENSSL} != "no" +GEOM_CLASSES+= eli +.endif +GEOM_CLASSES+= journal +GEOM_CLASSES+= label +GEOM_CLASSES+= mirror +GEOM_CLASSES+= mountver +GEOM_CLASSES+= multipath +GEOM_CLASSES+= nop +GEOM_CLASSES+= part +GEOM_CLASSES+= raid +GEOM_CLASSES+= raid3 +GEOM_CLASSES+= sched +GEOM_CLASSES+= shsec +GEOM_CLASSES+= stripe +GEOM_CLASSES+= virstor