git: bddc7a8a94ff - main - Tweak compat_freebsd32_bit feature name

From: Konstantin Belousov <kib_at_FreeBSD.org>
Date: Tue, 21 Nov 2023 12:29:10 UTC
The branch main has been updated by kib:

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

commit bddc7a8a94ff50bc0eacad5b11f954353a7e8c30
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2023-11-18 22:40:58 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2023-11-21 11:56:15 +0000

    Tweak compat_freebsd32_bit feature name
    
    Mark the current name 'compat_freebsd_32bit' as legacy, and add the
    new name 'compat_freebsd32'.  This seems to help with some make and
    shell uses.
    
    Requested by:   jrtc27
    Reviewed by:    markj
    Sponsored by:   The FreeBSD Foundation
    MFC after:      1 week
    Differential revision:  https://reviews.freebsd.org/D42641
---
 sys/compat/freebsd32/freebsd32_misc.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/sys/compat/freebsd32/freebsd32_misc.c b/sys/compat/freebsd32/freebsd32_misc.c
index d9266f57ac94..2f5cf95b4e4a 100644
--- a/sys/compat/freebsd32/freebsd32_misc.c
+++ b/sys/compat/freebsd32/freebsd32_misc.c
@@ -131,7 +131,9 @@ register_compat32_feature(void *arg)
 	if (!compat_freebsd_32bit)
 		return;
 
-	FEATURE_ADD("compat_freebsd_32bit", "Compatible with 32-bit FreeBSD");
+	FEATURE_ADD("compat_freebsd32", "Compatible with 32-bit FreeBSD");
+	FEATURE_ADD("compat_freebsd_32bit",
+	    "Compatible with 32-bit FreeBSD (legacy feature name)");
 }
 SYSINIT(freebsd32, SI_SUB_EXEC, SI_ORDER_ANY, register_compat32_feature,
     NULL);