# This makes UML load at 0x8048000 rather than 0xa0000000 when # CONFIG_MODE_SKAS is on and CONFIG_MODE_TT is off. This will make it # more valgrind-friendly, and also allow much greater physical memory # sizes without needing to use highmem. Index: um/arch/um/Makefile =================================================================== --- um.orig/arch/um/Makefile 2004-08-06 15:17:08.000000000 -0400 +++ um/arch/um/Makefile 2004-08-06 16:29:50.000000000 -0400 @@ -115,8 +115,12 @@ CONFIG_KERNEL_STACK_ORDER ?= 2 STACK_SIZE := $(shell echo $$[ 4096 * (1 << $(CONFIG_KERNEL_STACK_ORDER)) ] ) +ifndef START + START = $$(($(TOP_ADDR) - $(SIZE))) +endif + AFLAGS_vmlinux.lds.o = $(shell echo -U$(SUBARCH) \ - -DSTART=$$(($(TOP_ADDR) - $(SIZE))) -DELF_ARCH=$(ELF_ARCH) \ + -DSTART=$(START) -DELF_ARCH=$(ELF_ARCH) \ -DELF_FORMAT=\"$(ELF_FORMAT)\" $(CPP_MODE_TT) \ -DKERNEL_STACK_SIZE=$(STACK_SIZE)) Index: um/arch/um/Makefile-i386 =================================================================== --- um.orig/arch/um/Makefile-i386 2004-08-06 15:17:08.000000000 -0400 +++ um/arch/um/Makefile-i386 2004-08-06 16:29:50.000000000 -0400 @@ -4,6 +4,12 @@ TOP_ADDR = 0xc0000000 endif +ifeq ($(CONFIG_MODE_SKAS),y) + ifneq ($(CONFIG_MODE_TT),y) + START = 0x8048000 + endif +endif + CFLAGS += -U__$(SUBARCH)__ -U$(SUBARCH) ifneq ($(CONFIG_GPROF),y)