Skip to content

Commit

Permalink
userboot: enable bzipfs support
Browse files Browse the repository at this point in the history
Additionally, sort all real filesystems before the virtual ones.

Differential Revision:	https://reviews.freebsd.org/D2709
Reviewed by:	grehan
MFC after:	5 days
  • Loading branch information
avg-I committed Jun 3, 2015
1 parent cc213ca commit 0bbde92
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sys/boot/userboot/userboot/conf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
};

Expand Down

0 comments on commit 0bbde92

Please sign in to comment.