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
This commit is contained in:
Andriy Gapon 2015-06-03 10:10:00 +00:00
parent 0bbe6da5b6
commit 2ecf70de02
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=283939

View File

@ -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
};