diff options
author | jake <jake@FreeBSD.org> | 2002-12-19 19:34:59 +0000 |
---|---|---|
committer | jake <jake@FreeBSD.org> | 2002-12-19 19:34:59 +0000 |
commit | 081cb688bad1fc757639ad2826e4da11a0f994fe (patch) | |
tree | 4b6bec29c3fff7176b561b0ab1da88e128eb1010 /sys | |
parent | 5c5d2fc25d5afe15e1075e5313f1213f474cae27 (diff) | |
download | FreeBSD-src-081cb688bad1fc757639ad2826e4da11a0f994fe.zip FreeBSD-src-081cb688bad1fc757639ad2826e4da11a0f994fe.tar.gz |
Renamed the loader's zipfs to gzipfs. zipfs.c was repo-copied to gzipfs.c.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/boot/alpha/common/conf.c | 2 | ||||
-rw-r--r-- | sys/boot/arc/loader/conf.c | 2 | ||||
-rw-r--r-- | sys/boot/efi/loader/conf.c | 2 | ||||
-rw-r--r-- | sys/boot/i386/loader/conf.c | 2 | ||||
-rw-r--r-- | sys/boot/ia64/efi/conf.c | 2 | ||||
-rw-r--r-- | sys/boot/ia64/ski/conf.c | 2 | ||||
-rw-r--r-- | sys/boot/ia64/skiload/conf.c | 2 | ||||
-rw-r--r-- | sys/boot/powerpc/loader/conf.c | 2 | ||||
-rw-r--r-- | sys/boot/powerpc/ofw/conf.c | 2 | ||||
-rw-r--r-- | sys/boot/sparc64/loader/main.c | 5 |
10 files changed, 13 insertions, 10 deletions
diff --git a/sys/boot/alpha/common/conf.c b/sys/boot/alpha/common/conf.c index c1f9ea1..8db3ff7 100644 --- a/sys/boot/alpha/common/conf.c +++ b/sys/boot/alpha/common/conf.c @@ -65,7 +65,7 @@ struct fs_ops *file_system[] = { #ifdef LOADER_NET_SUPPORT &nfs_fsops, #endif - &zipfs_fsops, + &gzipfs_fsops, NULL }; diff --git a/sys/boot/arc/loader/conf.c b/sys/boot/arc/loader/conf.c index ba4000e..872514e 100644 --- a/sys/boot/arc/loader/conf.c +++ b/sys/boot/arc/loader/conf.c @@ -55,7 +55,7 @@ struct devsw *devsw[] = { struct fs_ops *file_system[] = { &ufs_fsops, - &zipfs_fsops, + &gzipfs_fsops, NULL }; diff --git a/sys/boot/efi/loader/conf.c b/sys/boot/efi/loader/conf.c index ac30416..0e5407c 100644 --- a/sys/boot/efi/loader/conf.c +++ b/sys/boot/efi/loader/conf.c @@ -62,7 +62,7 @@ struct fs_ops *file_system[] = { &efi_fsops, /* &ufs_fsops, */ &nfs_fsops, - &zipfs_fsops, + &gzipfs_fsops, NULL }; diff --git a/sys/boot/i386/loader/conf.c b/sys/boot/i386/loader/conf.c index bd70375..78b5d59 100644 --- a/sys/boot/i386/loader/conf.c +++ b/sys/boot/i386/loader/conf.c @@ -62,7 +62,7 @@ struct fs_ops *file_system[] = { &cd9660_fsops, &splitfs_fsops, #ifdef LOADER_GZIP_SUPPORT - &zipfs_fsops, + &gzipfs_fsops, #endif #ifdef LOADER_BZIP2_SUPPORT &bzipfs_fsops, diff --git a/sys/boot/ia64/efi/conf.c b/sys/boot/ia64/efi/conf.c index ac30416..0e5407c 100644 --- a/sys/boot/ia64/efi/conf.c +++ b/sys/boot/ia64/efi/conf.c @@ -62,7 +62,7 @@ struct fs_ops *file_system[] = { &efi_fsops, /* &ufs_fsops, */ &nfs_fsops, - &zipfs_fsops, + &gzipfs_fsops, NULL }; diff --git a/sys/boot/ia64/ski/conf.c b/sys/boot/ia64/ski/conf.c index 1322a81..6db907c 100644 --- a/sys/boot/ia64/ski/conf.c +++ b/sys/boot/ia64/ski/conf.c @@ -58,7 +58,7 @@ struct devsw *devsw[] = { struct fs_ops *file_system[] = { &ski_fsops, &ufs_fsops, - &zipfs_fsops, + &gzipfs_fsops, NULL }; diff --git a/sys/boot/ia64/skiload/conf.c b/sys/boot/ia64/skiload/conf.c index 1322a81..6db907c 100644 --- a/sys/boot/ia64/skiload/conf.c +++ b/sys/boot/ia64/skiload/conf.c @@ -58,7 +58,7 @@ struct devsw *devsw[] = { struct fs_ops *file_system[] = { &ski_fsops, &ufs_fsops, - &zipfs_fsops, + &gzipfs_fsops, NULL }; diff --git a/sys/boot/powerpc/loader/conf.c b/sys/boot/powerpc/loader/conf.c index 273815a..95e6bc6 100644 --- a/sys/boot/powerpc/loader/conf.c +++ b/sys/boot/powerpc/loader/conf.c @@ -68,7 +68,7 @@ struct fs_ops *file_system[] = { #ifdef LOADER_NET_SUPPORT &nfs_fsops, #endif - &zipfs_fsops, + &gzipfs_fsops, NULL }; diff --git a/sys/boot/powerpc/ofw/conf.c b/sys/boot/powerpc/ofw/conf.c index 273815a..95e6bc6 100644 --- a/sys/boot/powerpc/ofw/conf.c +++ b/sys/boot/powerpc/ofw/conf.c @@ -68,7 +68,7 @@ struct fs_ops *file_system[] = { #ifdef LOADER_NET_SUPPORT &nfs_fsops, #endif - &zipfs_fsops, + &gzipfs_fsops, NULL }; diff --git a/sys/boot/sparc64/loader/main.c b/sys/boot/sparc64/loader/main.c index 3354bc2..971adc6 100644 --- a/sys/boot/sparc64/loader/main.c +++ b/sys/boot/sparc64/loader/main.c @@ -106,9 +106,12 @@ struct fs_ops *file_system[] = { #ifdef LOADER_CD9660_SUPPORT &cd9660_fsops, #endif -#ifdef LOADER_GZIP_SUPPORT +#ifdef LOADER_ZIP_SUPPORT &zipfs_fsops, #endif +#ifdef LOADER_GZIP_SUPPORT + &gzipfs_fsops, +#endif #ifdef LOADER_BZIP2_SUPPORT &bzipfs_fsops, #endif |