aboutsummaryrefslogtreecommitdiff
path: root/bsd-user
diff options
context:
space:
mode:
authorWarner Losh <imp@bsdimp.com>2022-01-30 12:02:53 -0700
committerWarner Losh <imp@bsdimp.com>2022-02-26 10:01:38 -0700
commita941a16f6f52b287df2d2aa307cc81ee207c42a1 (patch)
tree340a5c4d682113d129a83dcf9caf735f15f4047b /bsd-user
parent0724067284fad14e23ce5286f3b9cb6e4e16d1a7 (diff)
downloadqemu-a941a16f6f52b287df2d2aa307cc81ee207c42a1.zip
qemu-a941a16f6f52b287df2d2aa307cc81ee207c42a1.tar.gz
qemu-a941a16f6f52b287df2d2aa307cc81ee207c42a1.tar.bz2
bsd-user: Remove bsd_type
Remove keeping track of which type of bsd we're running on. It's no longer referenced in the code. Building bsd-user on NetBSD or OpenBSD isn't possible, let alone running that code. Stop pretending that we can do the cross BSD thing since there's been a large divergence since 2000 that makes this nearly impossible between FreeBSD and {Net,Open}BSD and at least quite difficult between NetBSD and OpenBSD. Signed-off-by: Warner Losh <imp@bsdimp.com> Reviewed-by: Kyle Evans <kevans@FreeBSD.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'bsd-user')
-rw-r--r--bsd-user/main.c2
-rw-r--r--bsd-user/qemu.h7
2 files changed, 0 insertions, 9 deletions
diff --git a/bsd-user/main.c b/bsd-user/main.c
index bddb830..88d347d 100644
--- a/bsd-user/main.c
+++ b/bsd-user/main.c
@@ -96,7 +96,6 @@ unsigned long reserved_va;
static const char *interp_prefix = CONFIG_QEMU_INTERP_PREFIX;
const char *qemu_uname_release;
-enum BSDType bsd_type;
char qemu_proc_pathname[PATH_MAX]; /* full path to exeutable */
unsigned long target_maxtsiz = TARGET_MAXTSIZ; /* max text size */
@@ -284,7 +283,6 @@ int main(int argc, char **argv)
const char *gdbstub = NULL;
char **target_environ, **wrk;
envlist_t *envlist = NULL;
- bsd_type = HOST_DEFAULT_BSD_TYPE;
char *argv0 = NULL;
adjust_ssize();
diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h
index 02921ac..e5742bd 100644
--- a/bsd-user/qemu.h
+++ b/bsd-user/qemu.h
@@ -29,13 +29,6 @@
extern char **environ;
-enum BSDType {
- target_freebsd,
- target_netbsd,
- target_openbsd,
-};
-extern enum BSDType bsd_type;
-
#include "exec/user/thunk.h"
#include "target_arch.h"
#include "syscall_defs.h"