Subversion Repositories HelenOS

Rev

Rev 2300 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2300 Rev 2325
Line 34... Line 34...
34
BFD_ARCH = arm
34
BFD_ARCH = arm
35
BFD = binary
35
BFD = binary
36
TARGET = arm-linux-gnu
36
TARGET = arm-linux-gnu
37
TOOLCHAIN_DIR = /usr/local/arm
37
TOOLCHAIN_DIR = /usr/local/arm
38
 
38
 
39
KERNEL_LOAD_ADDRESS = 0x80150000
39
KERNEL_LOAD_ADDRESS = 0x80200000
40
 
40
 
41
CFLAGS += -fno-zero-initialized-in-bss
41
CFLAGS += -fno-zero-initialized-in-bss
42
 
42
 
43
MACHINE_gxemul_testarm = 1
-
 
44
 
-
 
45
DEFS += -D__32_BITS__ -DMACHINE=$(MACHINE_$(MACHINE)) -DKERNEL_LOAD_ADDRESS=$(KERNEL_LOAD_ADDRESS) \
43
DEFS += -D__32_BITS__ -DKERNEL_LOAD_ADDRESS=$(KERNEL_LOAD_ADDRESS)
46
	-DMACHINE_GXEMUL_TESTARM=$(MACHINE_gxemul_testarm)
-
 
47
 
-
 
48
CONFIG_GXEMUL = y
-
 
49
DEFS += -DCONFIG_GXEMUL
-
 
50
 
44
 
51
CONFIG_FB = y
45
CONFIG_FB = y
52
DEFS += -DCONFIG_FB
46
DEFS += -DCONFIG_FB
53
 
47
 
54
## Compile with hierarchical page tables support.
48
## Compile with hierarchical page tables support.
Line 80... Line 74...
80
	arch/$(ARCH)/src/mm/as.c \
74
	arch/$(ARCH)/src/mm/as.c \
81
	arch/$(ARCH)/src/mm/frame.c \
75
	arch/$(ARCH)/src/mm/frame.c \
82
	arch/$(ARCH)/src/mm/page.c \
76
	arch/$(ARCH)/src/mm/page.c \
83
	arch/$(ARCH)/src/interrupt.c \
77
	arch/$(ARCH)/src/interrupt.c \
84
	arch/$(ARCH)/src/mm/tlb.c \
78
	arch/$(ARCH)/src/mm/tlb.c \
85
	arch/$(ARCH)/src/debug_print/print.c \
79
	arch/$(ARCH)/src/debug/print.c \
86
	arch/$(ARCH)/src/console.c \
80
	arch/$(ARCH)/src/console.c \
87
	arch/$(ARCH)/src/exception.c \
81
	arch/$(ARCH)/src/exception.c \
88
	arch/$(ARCH)/src/mm/memory_init.c \
82
	arch/$(ARCH)/src/mm/memory_init.c \
89
	arch/$(ARCH)/src/mm/page_fault.c
83
	arch/$(ARCH)/src/mm/page_fault.c
90
 
84