e656d8a6f7
I had visions at one point of splitting proc into two filesystems. If that had happened proc/self being the the part of proc that actually deals with pids would have been a nice cleanup. As it is proc/self requires a lot of unnecessary infrastructure for a single file. The only user visible change is that a mounted /proc for a pid namespace that is dead now shows a broken proc symlink, instead of being completely invisible. I don't think anyone will notice or care. Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
32 lines
763 B
Makefile
32 lines
763 B
Makefile
#
|
|
# Makefile for the Linux proc filesystem routines.
|
|
#
|
|
|
|
obj-y += 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 \
|
|
proc_tty.o fd.o
|
|
proc-y += cmdline.o
|
|
proc-y += consoles.o
|
|
proc-y += cpuinfo.o
|
|
proc-y += devices.o
|
|
proc-y += interrupts.o
|
|
proc-y += loadavg.o
|
|
proc-y += meminfo.o
|
|
proc-y += stat.o
|
|
proc-y += uptime.o
|
|
proc-y += version.o
|
|
proc-y += softirqs.o
|
|
proc-y += namespaces.o
|
|
proc-y += self.o
|
|
proc-$(CONFIG_PROC_SYSCTL) += proc_sysctl.o
|
|
proc-$(CONFIG_NET) += proc_net.o
|
|
proc-$(CONFIG_PROC_KCORE) += kcore.o
|
|
proc-$(CONFIG_PROC_VMCORE) += vmcore.o
|
|
proc-$(CONFIG_PROC_DEVICETREE) += proc_devtree.o
|
|
proc-$(CONFIG_PRINTK) += kmsg.o
|
|
proc-$(CONFIG_PROC_PAGE_MONITOR) += page.o
|