mirror of
				https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
				synced 2025-10-31 06:18:54 +00:00 
			
		
		
		
	 666bfddbe8
			
		
	
	
		666bfddbe8
		
	
	
	
	
		
			
			From: "Vivek Goyal" <vgoyal@in.ibm.com> o Support for /proc/vmcore interface. This interface exports elf core image either in ELF32 or ELF64 format, depending on the format in which elf headers have been stored by crashed kernel. o Added support for CONFIG_VMCORE config option. o Removed the dependency on /proc/kcore. From: "Eric W. Biederman" <ebiederm@xmission.com> This patch has been refactored to more closely match the prevailing style in the affected files. And to clearly indicate the dependency between /proc/kcore and proc/vmcore.c From: Hariprasad Nellitheertha <hari@in.ibm.com> This patch contains the code that provides an ELF format interface to the previous kernel's memory post kexec reboot. Signed off by Hariprasad Nellitheertha <hari@in.ibm.com> Signed-off-by: Eric Biederman <ebiederm@xmission.com> Signed-off-by: Vivek Goyal <vgoyal@in.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
		
			
				
	
	
		
			16 lines
		
	
	
		
			378 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			378 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # Makefile for the Linux proc filesystem routines.
 | |
| #
 | |
| 
 | |
| obj-$(CONFIG_PROC_FS) += proc.o
 | |
| 
 | |
| proc-y			:= nommu.o task_nommu.o
 | |
| proc-$(CONFIG_MMU)	:= mmu.o task_mmu.o
 | |
| 
 | |
| proc-y       += inode.o root.o base.o generic.o array.o \
 | |
| 		kmsg.o proc_tty.o proc_misc.o
 | |
| 
 | |
| proc-$(CONFIG_PROC_KCORE)	+= kcore.o
 | |
| proc-$(CONFIG_PROC_VMCORE)	+= vmcore.o
 | |
| proc-$(CONFIG_PROC_DEVICETREE)	+= proc_devtree.o
 |