diff options
author | Justus Winter <justus@gnupg.org> | 2016-10-24 23:07:55 +0200 |
---|---|---|
committer | Justus Winter <justus@gnupg.org> | 2016-11-01 11:37:10 +0100 |
commit | 14ca7bbf803d0b6f9defc28db9021dcb2e65384a (patch) | |
tree | a91d0d0593b134f9fedd26749de4c066023c835c /boot/sigvec.S | |
parent | 87c1eba3e7c9402ca59340db8a43a4c9ef5b3bd5 (diff) | |
download | hurd-14ca7bbf803d0b6f9defc28db9021dcb2e65384a.tar.gz hurd-14ca7bbf803d0b6f9defc28db9021dcb2e65384a.tar.bz2 hurd-14ca7bbf803d0b6f9defc28db9021dcb2e65384a.zip |
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.
Diffstat (limited to 'boot/sigvec.S')
-rw-r--r-- | boot/sigvec.S | 23 |
1 files changed, 0 insertions, 23 deletions
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 <i386/asm.h> - -.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 |