From cc623784c11df05b3019b282691b6abdd63d9a71 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Sat, 3 Dec 2022 12:48:23 -0700 Subject: [PATCH] kboot: Enable fewer things by default We don't need NFS / network support by default, nor do we need gzip support. Remove them for now. Sponsored by: Netflix --- stand/kboot/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stand/kboot/Makefile b/stand/kboot/Makefile index 42385c9caf76..5fe444cdf8c5 100644 --- a/stand/kboot/Makefile +++ b/stand/kboot/Makefile @@ -5,10 +5,10 @@ LOADER_CD9660_SUPPORT?= yes LOADER_MSDOS_SUPPORT?= no LOADER_EXT2FS_SUPPORT?= yes LOADER_UFS_SUPPORT?= yes -LOADER_NET_SUPPORT?= yes -LOADER_NFS_SUPPORT?= yes +LOADER_NET_SUPPORT?= no +LOADER_NFS_SUPPORT?= no LOADER_TFTP_SUPPORT?= no -LOADER_GZIP_SUPPORT?= yes +LOADER_GZIP_SUPPORT?= no LOADER_BZIP2_SUPPORT?= no .include