config HIGHMEM
bool "Highmem support"
+config KERNEL_STACK_ORDER
+ int "Kernel stack size order"
+ default 2
+ help
+ This option determines the size of UML kernel stacks. They will
+ be 1 << order pages. The default is OK unless you're running Valgrind
+ on UML, in which case, set this to 3.
+
endmenu
-
- menu "Loadable module support"
-
- config MODULES
- bool "Enable loadable module support"
-
- # MODVERSIONS does not yet work in this architecture
- # bool ' Set version information on all module symbols' CONFIG_MODVERSIONS
- config KMOD
- bool "Kernel module loader"
- depends on MODULES
-
- endmenu
+ source "init/Kconfig"
source "arch/um/Kconfig_char"
syscall_kern.o syscall_user.o time.o tlb.o tracer.o trap_user.o \
uaccess_user.o sys-$(SUBARCH)/
- obj-$(CONFIG_PT_PROXY) += ptproxy/
+ obj-$(CONFIG_PT_PROXY) += gdb_kern.o ptproxy/
-export-objs = ksyms.o
-
USER_OBJS := $(filter %_user.o,$(obj-y)) gdb.o time.o tracer.o
USER_OBJS := $(foreach file,$(USER_OBJS),$(obj)/$(file))