From 8e499a60837add838647d7319dbd650cc4fb33ab Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Mon, 24 Oct 2016 23:07:55 +0200 Subject: boot: Remove hacks for running boot on UX. * boot/Makefile (COMMON-OBJS): Do not build server stubs for the bootstrap protocol. Remove all UX-related variables and targets. * boot/boot.c: Remove all UX-related definitions and includes. * boot/frank1.ld: Delete file. * boot/frankemul.ld: Likewise. * boot/mach-crt0.c: Likewise. * boot/sigvec.S: Likewise. * boot/syscall.S: Likewise. * boot/ux.c: Likewise. * boot/ux.h: Likewise. --- boot/sigvec.S | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 boot/sigvec.S (limited to 'boot/sigvec.S') diff --git a/boot/sigvec.S b/boot/sigvec.S deleted file mode 100644 index cc7bb94e..00000000 --- a/boot/sigvec.S +++ /dev/null @@ -1,23 +0,0 @@ -#include - -.text -ENTRY(sigreturn) - movl $0x67,%eax - lcall $0x7,$0x0 - jb error - ret -ENTRY(_sigreturn) - addl $0xc,%esp - call EXT(sigreturn) - ret -ENTRY(sigvec) - movl $0x6c,%eax - movl $EXT(_sigreturn),%edx - orl $0x80000000,%edx - lcall $0x7,$0x0 - jb error - ret -error: - movl %eax,EXT(errno) - movl $-1,%eax - ret -- cgit v1.2.3