Tweak compat_freebsd32_bit feature name

(cherry picked from commit bddc7a8a94)
This commit is contained in:
Konstantin Belousov 2023-11-19 00:40:58 +02:00
parent c4a62edfe2
commit 28ddc16c7b

View file

@ -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);