From 283a5c0b30a9b5bf421f10b1b5fac19aee3a4e26 Mon Sep 17 00:00:00 2001 From: avg Date: Fri, 12 Jun 2015 11:41:33 +0000 Subject: [PATCH] MFC r283939: userboot: enable bzipfs support --- sys/boot/userboot/userboot/conf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/boot/userboot/userboot/conf.c b/sys/boot/userboot/userboot/conf.c index 6727a223e327..b8daa7396ca3 100644 --- a/sys/boot/userboot/userboot/conf.c +++ b/sys/boot/userboot/userboot/conf.c @@ -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 };