diff options
| author | Warner Losh <imp@FreeBSD.org> | 2026-07-11 14:46:14 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2026-07-11 19:28:47 +0000 |
| commit | 86d719ae68aa5f6db055e1fa7ede24b70e612ec7 (patch) | |
| tree | 47fbaf0faabf5cccf29c888ea92ae0a5f3bbe2a8 /stand/libsa/Makefile | |
| parent | dc6c193bb4a67e2e9ee97d1e3ac3e2950bd16979 (diff) | |
loader: Add xzfs, like gzipfs but with xz.
This is just like gzipfs or bzipfs, except done with the newer xz
program. This is off by default for the moment.
Sponsored by: Netflix
Diffstat (limited to 'stand/libsa/Makefile')
| -rw-r--r-- | stand/libsa/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/stand/libsa/Makefile b/stand/libsa/Makefile index ab7a0f5a59f2..2bb33060ee2a 100644 --- a/stand/libsa/Makefile +++ b/stand/libsa/Makefile @@ -142,7 +142,7 @@ SRCS+= arp.c ether.c ip.c inet_ntoa.c in_cksum.c net.c udp.c netif.c rpc.c SRCS+= bootp.c rarp.c bootparam.c # boot filesystems -SRCS+= ufs.c nfs.c cd9660.c tftp.c gzipfs.c bzipfs.c +SRCS+= ufs.c nfs.c cd9660.c tftp.c gzipfs.c bzipfs.c xzfs.c SRCS+= dosfs.c ext2fs.c SRCS+= splitfs.c SRCS+= pkgfs.c @@ -168,6 +168,7 @@ CFLAGS.ffs_subr.c+= -DSTANDALONE_SMALL CFLAGS.gzipfs.c+= ${ZLIB_CFLAGS} CFLAGS.pkgfs.c+= ${ZLIB_CFLAGS} CFLAGS.bzipfs.c+= ${BZIP2_CFLAGS} +CFLAGS.xzfs.c+= ${XZ_CFLAGS} # explicit_bzero and calculate_crc32c .PATH: ${SYSDIR}/libkern |
