[PATCH] uml: Rename Kconfig files to be like the other arches

To the extent that sub-Kconfig files exist elsewhere in the tree, they are
named Kconfig.foo, rather than the Kconfig_foo that UML has.  This patch
brings the names in line with the rest of the tree.

Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Jeff Dike 2005-09-03 15:57:12 -07:00 committed by Linus Torvalds
parent 96e59245e1
commit 08b178ebf3
7 changed files with 14 additions and 14 deletions

View File

@ -73,7 +73,7 @@ config MODE_SKAS
to CONFIG_MODE_TT). Otherwise, it is safe to say Y. Disabling this to CONFIG_MODE_TT). Otherwise, it is safe to say Y. Disabling this
option will shrink the UML binary slightly. option will shrink the UML binary slightly.
source "arch/um/Kconfig_arch" source "arch/um/Kconfig.arch"
source "mm/Kconfig" source "mm/Kconfig"
config LD_SCRIPT_STATIC config LD_SCRIPT_STATIC
@ -279,7 +279,7 @@ source "net/Kconfig"
source "drivers/base/Kconfig" source "drivers/base/Kconfig"
source "arch/um/Kconfig_char" source "arch/um/Kconfig.char"
source "drivers/block/Kconfig" source "drivers/block/Kconfig"
@ -287,7 +287,7 @@ config NETDEVICES
bool bool
default NET default NET
source "arch/um/Kconfig_net" source "arch/um/Kconfig.net"
source "drivers/net/Kconfig" source "drivers/net/Kconfig"
@ -311,7 +311,7 @@ config GENERIC_ISA_DMA
depends on SCSI depends on SCSI
default y default y
source "arch/um/Kconfig_scsi" source "arch/um/Kconfig.scsi"
endmenu endmenu

View File

@ -101,10 +101,10 @@ define archhelp
endef endef
ifneq ($(KBUILD_SRC),) ifneq ($(KBUILD_SRC),)
$(shell mkdir -p $(ARCH_DIR) && ln -fsn $(srctree)/$(ARCH_DIR)/Kconfig_$(SUBARCH) $(ARCH_DIR)/Kconfig_arch) $(shell mkdir -p $(ARCH_DIR) && ln -fsn $(srctree)/$(ARCH_DIR)/Kconfig.$(SUBARCH) $(ARCH_DIR)/Kconfig.arch)
CLEAN_FILES += $(ARCH_DIR)/Kconfig_arch CLEAN_FILES += $(ARCH_DIR)/Kconfig.arch
else else
$(shell cd $(ARCH_DIR) && ln -sf Kconfig_$(SUBARCH) Kconfig_arch) $(shell cd $(ARCH_DIR) && ln -sf Kconfig.$(SUBARCH) Kconfig.arch)
endif endif
prepare: $(ARCH_SYMLINKS) $(SYS_HEADERS) $(GEN_HEADERS) prepare: $(ARCH_SYMLINKS) $(SYS_HEADERS) $(GEN_HEADERS)
@ -147,7 +147,7 @@ CLEAN_FILES += linux x.i gmon.out $(ARCH_DIR)/include/uml-config.h \
MRPROPER_FILES += $(SYMLINK_HEADERS) $(ARCH_SYMLINKS) \ MRPROPER_FILES += $(SYMLINK_HEADERS) $(ARCH_SYMLINKS) \
$(addprefix $(ARCH_DIR)/kernel/,$(KERN_SYMLINKS)) $(ARCH_DIR)/os \ $(addprefix $(ARCH_DIR)/kernel/,$(KERN_SYMLINKS)) $(ARCH_DIR)/os \
$(ARCH_DIR)/Kconfig_arch $(ARCH_DIR)/Kconfig.arch
archclean: archclean:
$(Q)$(MAKE) $(clean)=$(ARCH_DIR)/util $(Q)$(MAKE) $(clean)=$(ARCH_DIR)/util