From 083845b5c0aeb13dbfc360649d01fd9dfab374a4 Mon Sep 17 00:00:00 2001 From: jake Date: Sun, 13 Oct 2002 18:52:46 +0000 Subject: Compile in support for zipfs and bzipfs so we can load the gzipped mfsroot that releases use. --- sys/boot/sparc64/loader/Makefile | 8 ++++++++ sys/boot/sparc64/loader/main.c | 6 ++++++ 2 files changed, 14 insertions(+) (limited to 'sys/boot/sparc64') diff --git a/sys/boot/sparc64/loader/Makefile b/sys/boot/sparc64/loader/Makefile index 16f758d..cb7a8fa 100644 --- a/sys/boot/sparc64/loader/Makefile +++ b/sys/boot/sparc64/loader/Makefile @@ -16,6 +16,8 @@ LOADER_CD9660_SUPPORT?= yes LOADER_NET_SUPPORT?= yes LOADER_NFS_SUPPORT?= yes LOADER_TFTP_SUPPORT?= yes +LOADER_GZIP_SUPPORT?= yes +LOADER_BZIP2_SUPPORT?= no .if ${LOADER_DISK_SUPPORT} == "yes" CFLAGS+= -DLOADER_DISK_SUPPORT @@ -26,6 +28,12 @@ CFLAGS+= -DLOADER_UFS_SUPPORT .if ${LOADER_CD9660_SUPPORT} == "yes" CFLAGS+= -DLOADER_CD9660_SUPPORT .endif +.if ${LOADER_GZIP_SUPPORT} == "yes" +CFLAGS+= -DLOADER_GZIP_SUPPORT +.endif +.if ${LOADER_BZIP2_SUPPORT} == "yes" +CFLAGS+= -DLOADER_BZIP2_SUPPORT +.endif .if ${LOADER_NET_SUPPORT} == "yes" CFLAGS+= -DLOADER_NET_SUPPORT .endif diff --git a/sys/boot/sparc64/loader/main.c b/sys/boot/sparc64/loader/main.c index 29f92da..43e3c77 100644 --- a/sys/boot/sparc64/loader/main.c +++ b/sys/boot/sparc64/loader/main.c @@ -107,6 +107,12 @@ struct fs_ops *file_system[] = { #ifdef LOADER_CD9660_SUPPORT &cd9660_fsops, #endif +#ifdef LOADER_GZIP_SUPPORT + &zipfs_fsops, +#endif +#ifdef LOADER_BZIP2_SUPPORT + &bzipfs_fsops, +#endif #ifdef LOADER_NET_SUPPORT &nfs_fsops, #endif -- cgit v1.1