git: 68e7006a78c2 - stable/13 - kboot: Enable fewer things by default

From: Warner Losh <imp_at_FreeBSD.org>
Date: Tue, 24 Jan 2023 22:13:42 UTC
The branch stable/13 has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=68e7006a78c2bcc2fc70fc8eb2b622fa6140d48c

commit 68e7006a78c2bcc2fc70fc8eb2b622fa6140d48c
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2022-12-03 19:48:23 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2023-01-24 21:49:41 +0000

    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
    
    (cherry picked from commit cc623784c11df05b3019b282691b6abdd63d9a71)
---
 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 <bsd.init.mk>