summaryrefslogtreecommitdiffstats
path: root/sys/boot/sparc64
diff options
context:
space:
mode:
authorjake <jake@FreeBSD.org>2002-10-13 18:52:46 +0000
committerjake <jake@FreeBSD.org>2002-10-13 18:52:46 +0000
commit083845b5c0aeb13dbfc360649d01fd9dfab374a4 (patch)
tree9177521095beae53441c158b13e277ca27e62b56 /sys/boot/sparc64
parentc67390b43d3e32014f2c88c1304d1a3d2f8a9cfc (diff)
downloadFreeBSD-src-083845b5c0aeb13dbfc360649d01fd9dfab374a4.zip
FreeBSD-src-083845b5c0aeb13dbfc360649d01fd9dfab374a4.tar.gz
Compile in support for zipfs and bzipfs so we can load the gzipped mfsroot
that releases use.
Diffstat (limited to 'sys/boot/sparc64')
-rw-r--r--sys/boot/sparc64/loader/Makefile8
-rw-r--r--sys/boot/sparc64/loader/main.c6
2 files changed, 14 insertions, 0 deletions
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
OpenPOWER on IntegriCloud