Three more bsd-user cleanups. The general plan after these patches is to get and keep i386 working as I flush out the loader, the basic system calls, system tracing, etc. I'll move files around so they are like the current bsd-user tree. Once that's all done, I'll add the different architectures we currently support. Sparc64 was removed from FreeBSD and never really worked in bsd-user, so would need to be deleted eventually anyway. If we do it at the start of the series, we'll reduce the burden on getting the other things in w/o ditching functionality we'll need in the end.
Short term, this just removes sparc from the build, deletes a file that's not in the final product and renames a bsd-specific structure to have a bsd name, not a linux one. Warner Losh (3): bsd-user: remove target_signal.h, it's unused bsd-user: Stop building the sparc platforms bsd-user: rename linux_binprm to bsd_binprm bsd-user/bsdload.c | 4 +-- bsd-user/elfload.c | 4 +-- bsd-user/i386/target_signal.h | 20 --------------- bsd-user/qemu.h | 7 +++-- bsd-user/signal.c | 1 - bsd-user/sparc/target_signal.h | 27 -------------------- bsd-user/sparc64/target_signal.h | 27 -------------------- bsd-user/x86_64/target_signal.h | 19 -------------- default-configs/targets/sparc-bsd-user.mak | 3 --- default-configs/targets/sparc64-bsd-user.mak | 4 --- 10 files changed, 7 insertions(+), 109 deletions(-) delete mode 100644 bsd-user/i386/target_signal.h delete mode 100644 bsd-user/sparc/target_signal.h delete mode 100644 bsd-user/sparc64/target_signal.h delete mode 100644 bsd-user/x86_64/target_signal.h delete mode 100644 default-configs/targets/sparc-bsd-user.mak delete mode 100644 default-configs/targets/sparc64-bsd-user.mak -- 2.22.1