Author: avg Date: Wed Jun 3 10:10:00 2015 New Revision: 283939 URL: https://svnweb.freebsd.org/changeset/base/283939
Log: userboot: enable bzipfs support Additionally, sort all real filesystems before the virtual ones. Differential Revision: https://reviews.freebsd.org/D2709 Reviewed by: grehan MFC after: 5 days Modified: head/sys/boot/userboot/userboot/conf.c Modified: head/sys/boot/userboot/userboot/conf.c ============================================================================== --- head/sys/boot/userboot/userboot/conf.c Wed Jun 3 06:02:49 2015 (r283938) +++ head/sys/boot/userboot/userboot/conf.c Wed Jun 3 10:10:00 2015 (r283939) @@ -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 }; _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "[email protected]"
