svn commit: r284311 - stable/10/sys/boot/userboot/userboot

Andriy Gapon avg at FreeBSD.org
Fri Jun 12 11:41:34 UTC 2015


Author: avg
Date: Fri Jun 12 11:41:33 2015
New Revision: 284311
URL: https://svnweb.freebsd.org/changeset/base/284311

Log:
  MFC r283939: userboot: enable bzipfs support

Modified:
  stable/10/sys/boot/userboot/userboot/conf.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/boot/userboot/userboot/conf.c
==============================================================================
--- stable/10/sys/boot/userboot/userboot/conf.c	Fri Jun 12 11:32:20 2015	(r284310)
+++ stable/10/sys/boot/userboot/userboot/conf.c	Fri Jun 12 11:41:33 2015	(r284311)
@@ -65,10 +65,11 @@ struct fs_ops *file_system[] = {
 	&host_fsops,
 	&ufs_fsops,
 	&cd9660_fsops,
-	&gzipfs_fsops,
 #if defined(USERBOOT_ZFS_SUPPORT)
 	&zfs_fsops,
 #endif
+	&gzipfs_fsops,
+	&bzipfs_fsops,
 	NULL
 };
 


More information about the svn-src-all mailing list