Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 Dec 2021 18:48:16 GMT
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 9da5257e1c04 - main - imgact_aout.c: We do not expect the aout support to be ported
Message-ID:  <202112061848.1B6ImGEd065020@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by kib:

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

commit 9da5257e1c045220c01979dcdceadcf2867d20f0
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2021-12-04 04:14:38 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2021-12-06 18:46:49 +0000

    imgact_aout.c: We do not expect the aout support to be ported
    
    Specify that the only supported architecture for a.out is ia32 (either
    i386 or amd64 host kernel).
    
    Requested by:   emaste
    Sponsored by:   The FreeBSD Foundation
    MFC after:      1 week
    Differential revision:  https://reviews.freebsd.org/D32960
---
 sys/kern/imgact_aout.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/kern/imgact_aout.c b/sys/kern/imgact_aout.c
index 7d7ba51efd84..560803db4a86 100644
--- a/sys/kern/imgact_aout.c
+++ b/sys/kern/imgact_aout.c
@@ -145,7 +145,7 @@ struct sysentvec aout_sysvec = {
 	.sv_set_fork_retval = x86_set_fork_retval,
 };
 #else
-#error "Port me"
+#error "Only ia32 arch is supported"
 #endif
 
 static int



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