Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 23fc5f15 authored by Richard Weinberger's avatar Richard Weinberger
Browse files

um: Remove ia64 cruft



That code is a relict from the early days of UML.
ia64 support was never completed nor worked.
Let's rip it out.

Signed-off-by: default avatarRichard Weinberger <richard@nod.at>
parent fcf81931
Loading
Loading
Loading
Loading

arch/um/Makefile-ia64

deleted100644 → 0
+0 −1
Original line number Diff line number Diff line
START_ADDR = 0x1000000000000000

arch/um/sys-ia64/Makefile

deleted100644 → 0
+0 −11
Original line number Diff line number Diff line
OBJ = built-in.o

OBJS =

all: $(OBJ)

$(OBJ): $(OBJS)
	rm -f $@
	$(LD) $(LINKFLAGS) --start-group $^ --end-group -o $@

clean-files := $(OBJS) link.ld

arch/um/sys-ia64/sysdep/ptrace.h

deleted100644 → 0
+0 −16
Original line number Diff line number Diff line
/* 
 * Copyright (C) 2000 Jeff Dike (jdike@karaya.com)
 * Licensed under the GPL
 */

#ifndef __SYSDEP_IA64_PTRACE_H
#define __SYSDEP_IA64_PTRACE_H

struct sys_pt_regs {
  int foo;
};

#define EMPTY_REGS { 0 }

#endif
+0 −10
Original line number Diff line number Diff line
/* 
 * Copyright (C) 2000 Jeff Dike (jdike@karaya.com)
 * Licensed under the GPL
 */

#ifndef __SYSDEP_IA64_SIGCONTEXT_H
#define __SYSDEP_IA64_SIGCONTEXT_H

#endif
+0 −22
Original line number Diff line number Diff line
/*
 * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
 * Licensed under the GPL
 */

#ifndef __SYSDEP_IA64_SKAS_PTRACE_H
#define __SYSDEP_IA64_SKAS_PTRACE_H

struct ptrace_faultinfo {
        int is_write;
        unsigned long addr;
};

struct ptrace_ldt {
        int func;
        void *ptr;
        unsigned long bytecount;
};

#define PTRACE_LDT 54

#endif
Loading