The branch main has been updated by dfr:

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

commit eb6f48854df20441b384ca36b6b31558ada087c9
Author:     Doug Rabson <[email protected]>
AuthorDate: 2022-12-07 13:40:18 +0000
Commit:     Doug Rabson <[email protected]>
CommitDate: 2022-12-07 13:51:34 +0000

    Fix a typo in the binmisc option name
    
    This should be spelt IMGACT_BINMISC to match the filename. The option
    name does not appear outside of sys/conf and this module is typically
    used via the kernel module imgact_binmisc.ko.
    
    MFC After: 2 weeks
---
 sys/conf/NOTES   | 2 +-
 sys/conf/files   | 2 +-
 sys/conf/options | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys/conf/NOTES b/sys/conf/NOTES
index 8a9c726b792c..1c763b2a2ceb 100644
--- a/sys/conf/NOTES
+++ b/sys/conf/NOTES
@@ -2772,7 +2772,7 @@ options   RANDOM_ENABLE_UMA       # slab allocator
 options        RANDOM_ENABLE_ETHER     # ether_input
 
 # Module to enable execution of application via emulators like QEMU
-options         IMAGACT_BINMISC
+options         IMGACT_BINMISC
 
 # zlib I/O stream support
 # This enables support for compressed core dumps.
diff --git a/sys/conf/files b/sys/conf/files
index 9aec63c6969e..60c5c749c40b 100644
--- a/sys/conf/files
+++ b/sys/conf/files
@@ -3772,7 +3772,7 @@ kern/bus_if.m                     standard
 kern/clock_if.m                        standard
 kern/cpufreq_if.m              standard
 kern/device_if.m               standard
-kern/imgact_binmisc.c          optional        imagact_binmisc
+kern/imgact_binmisc.c          optional imgact_binmisc
 kern/imgact_elf.c              standard
 kern/imgact_elf32.c            optional compat_freebsd32
 kern/imgact_shell.c            standard
diff --git a/sys/conf/options b/sys/conf/options
index c388a06abc9b..e2720980f356 100644
--- a/sys/conf/options
+++ b/sys/conf/options
@@ -110,7 +110,7 @@ FILEMON             opt_dontuse.h
 FFCLOCK
 FULL_PREEMPTION        opt_sched.h
 GZIO           opt_gzio.h
-IMAGACT_BINMISC                opt_dontuse.h
+IMGACT_BINMISC         opt_dontuse.h
 IPI_PREEMPTION opt_sched.h
 GEOM_BDE       opt_geom.h
 GEOM_CACHE     opt_geom.h

Reply via email to