git: cc623784c11d - main - kboot: Enable fewer things by default
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 03 Dec 2022 20:08:12 UTC
The branch main has been updated by imp:
URL: https://cgit.FreeBSD.org/src/commit/?id=cc623784c11df05b3019b282691b6abdd63d9a71
commit cc623784c11df05b3019b282691b6abdd63d9a71
Author: Warner Losh <imp@FreeBSD.org>
AuthorDate: 2022-12-03 19:48:23 +0000
Commit: Warner Losh <imp@FreeBSD.org>
CommitDate: 2022-12-03 19:48:45 +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
---
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>