mirror of
https://github.com/torvalds/linux.git
synced 2024-10-31 17:21:49 +00:00
c45166be3c
We want to make possible, for the user, to enable the i586 AES implementation. This requires a restructure. - Add a CONFIG_UML_X86 to notify that we are building a UML for i386. - Rename CONFIG_64_BIT to CONFIG_64BIT as is used for all other archs - Tell crypto/Kconfig that UML_X86 is as good as X86 - Tell it that it must exclude not X86_64 but 64BIT, which will give the same results. - Tell kbuild to descend down into arch/i386/crypto/ to build what's needed. Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
45 lines
1002 B
Plaintext
45 lines
1002 B
Plaintext
SUBARCH_CORE := arch/um/sys-i386/ arch/i386/crypto/
|
|
|
|
TOP_ADDR := $(CONFIG_TOP_ADDR)
|
|
|
|
ifeq ($(CONFIG_MODE_SKAS),y)
|
|
ifneq ($(CONFIG_MODE_TT),y)
|
|
START := 0x8048000
|
|
endif
|
|
endif
|
|
|
|
CFLAGS += -U__$(SUBARCH)__ -U$(SUBARCH)
|
|
ARCH_USER_CFLAGS :=
|
|
|
|
ifneq ($(CONFIG_GPROF),y)
|
|
ARCH_CFLAGS += -DUM_FASTCALL
|
|
endif
|
|
|
|
ELF_ARCH := $(SUBARCH)
|
|
ELF_FORMAT := elf32-$(SUBARCH)
|
|
|
|
OBJCOPYFLAGS := -O binary -R .note -R .comment -S
|
|
|
|
SYS_UTIL_DIR := $(ARCH_DIR)/sys-i386/util
|
|
|
|
SYS_HEADERS := $(SYS_DIR)/sc.h $(SYS_DIR)/thread.h
|
|
|
|
prepare: $(SYS_HEADERS)
|
|
|
|
$(SYS_DIR)/sc.h: $(SYS_UTIL_DIR)/mk_sc
|
|
$(call filechk,gen_header)
|
|
|
|
$(SYS_DIR)/thread.h: $(SYS_UTIL_DIR)/mk_thread
|
|
$(call filechk,gen_header)
|
|
|
|
$(SYS_UTIL_DIR)/mk_sc: scripts_basic FORCE
|
|
$(Q)$(MAKE) $(build)=$(SYS_UTIL_DIR) $@
|
|
|
|
$(SYS_UTIL_DIR)/mk_thread: scripts_basic $(ARCH_SYMLINKS) $(GEN_HEADERS) FORCE
|
|
$(Q)$(MAKE) $(build)=$(SYS_UTIL_DIR) $@
|
|
|
|
$(SYS_UTIL_DIR): scripts_basic include/asm FORCE
|
|
$(Q)$(MAKE) $(build)=$(SYS_UTIL_DIR)
|
|
|
|
CLEAN_FILES += $(SYS_HEADERS)
|