Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Jan 2023 22:13:41 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: a5f090ffe83a - stable/13 - kboot: Make dosfs support conditional
Message-ID:  <202301242213.30OMDfo9088780@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by imp:

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

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

    kboot: Make dosfs support conditional
    
    Sponsored by:           Netflix
    
    (cherry picked from commit 4f6c506c6f44db2ac149a22c1048d526055b37e3)
---
 stand/kboot/conf.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/stand/kboot/conf.c b/stand/kboot/conf.c
index 26788342c4b9..ba6031b52783 100644
--- a/stand/kboot/conf.c
+++ b/stand/kboot/conf.c
@@ -82,7 +82,9 @@ struct fs_ops *file_system[] = {
 #if defined(LOADER_BZIP2_SUPPORT)
     &bzipfs_fsops,
 #endif
+#if defined(LOADER_MSDOS_SUPPORT)
     &dosfs_fsops,
+#endif
     &hostfs_fsops,
     NULL
 };



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202301242213.30OMDfo9088780>