From owner-svn-src-stable@FreeBSD.ORG Fri Jun 12 11:41:48 2015 Return-Path: Delivered-To: svn-src-stable@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BDF9779C; Fri, 12 Jun 2015 11:41:48 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 ABEFC1A47; Fri, 12 Jun 2015 11:41:48 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5CBfmGu041666; Fri, 12 Jun 2015 11:41:48 GMT (envelope-from avg@FreeBSD.org) Received: (from avg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5CBfmPB041665; Fri, 12 Jun 2015 11:41:48 GMT (envelope-from avg@FreeBSD.org) Message-Id: <201506121141.t5CBfmPB041665@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: avg set sender to avg@FreeBSD.org using -f From: Andriy Gapon Date: Fri, 12 Jun 2015 11:41:48 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r284312 - stable/9/sys/boot/userboot/userboot X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2015 11:41:48 -0000 Author: avg Date: Fri Jun 12 11:41:47 2015 New Revision: 284312 URL: https://svnweb.freebsd.org/changeset/base/284312 Log: MFC r283939: userboot: enable bzipfs support Modified: stable/9/sys/boot/userboot/userboot/conf.c Directory Properties: stable/9/sys/ (props changed) stable/9/sys/boot/ (props changed) Modified: stable/9/sys/boot/userboot/userboot/conf.c ============================================================================== --- stable/9/sys/boot/userboot/userboot/conf.c Fri Jun 12 11:41:33 2015 (r284311) +++ stable/9/sys/boot/userboot/userboot/conf.c Fri Jun 12 11:41:47 2015 (r284312) @@ -58,6 +58,7 @@ struct fs_ops *file_system[] = { &host_fsops, &ufs_fsops, &gzipfs_fsops, + &bzipfs_fsops, NULL };