Rename i386's Linux ELF to Linux ELF32

This is what amd64 calls the i386 Linux ABI in order to distinguish it
from the amd64 Linux ABI, and matches the nomenclature used for the
FreeBSD ABIs where they always have the size suffix in the name.

Reviewed by:	trasz
Differential Revision:	https://reviews.freebsd.org/D27647
This commit is contained in:
Jessica Clarke 2021-01-21 01:54:12 +00:00
parent 32cb85d0f1
commit 5faeda9037
2 changed files with 2 additions and 2 deletions

View File

@ -882,7 +882,7 @@ struct sysentvec elf_linux_sysvec = {
.sv_sendsig = linux_sendsig,
.sv_sigcode = &_binary_linux_locore_o_start,
.sv_szsigcode = &linux_szsigcode,
.sv_name = "Linux ELF",
.sv_name = "Linux ELF32",
.sv_coredump = elf32_coredump,
.sv_imgact_try = linux_exec_imgact_try,
.sv_minsigstksz = LINUX_MINSIGSTKSZ,

View File

@ -141,7 +141,7 @@ static struct procabi_table abis[] = {
{ "Linux ELF64", &linux },
{ "Linux ELF32", &linux32 },
#else
{ "Linux ELF", &linux },
{ "Linux ELF32", &linux },
#endif
};