From: James S. <jsi...@us...> - 2002-02-26 16:36:16
|
Update of /cvsroot/linux-mips/linux/arch/mips64/kernel In directory usw-pr-cvs1:/tmp/cvs-serv4980/kernel Modified Files: Makefile Removed Files: r4k_tlb_glue.S Log Message: Rearrange TLB exception handlers similarly to 32-bit kernel. Index: Makefile =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips64/kernel/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile 28 Jan 2002 20:31:57 -0000 1.4 +++ Makefile 26 Feb 2002 16:36:12 -0000 1.5 @@ -16,9 +16,9 @@ export-objs = irq.o mips64_ksyms.o pci-dma.o smp.o obj-y := branch.o entry.o irq.o proc.o process.o ptrace.o r4k_cache.o \ - r4k_fpu.o r4k_genex.o r4k_switch.o r4k_tlb.o r4k_tlb_debug.o \ - r4k_tlb_glue.o reset.o scall_64.o semaphore.o setup.o signal.o \ - softfp.o syscall.o time.o traps.o unaligned.o + r4k_fpu.o r4k_genex.o r4k_switch.o reset.o scall_64.o \ + semaphore.o setup.o signal.o softfp.o syscall.o time.o traps.o \ + unaligned.o obj-$(CONFIG_I8259) += i8259.o obj-$(CONFIG_IRQ_CPU) += irq_cpu.o @@ -33,6 +33,5 @@ endif CFLAGS_r4k_genex.o := -P -CFLAGS_r4k_tlb_glue.o := -P include $(TOPDIR)/Rules.make --- r4k_tlb_glue.S DELETED --- |