Subversion Repositories HelenOS

Rev

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

Rev 2214 Rev 2263
Line 38... Line 38...
38
 
38
 
39
KERNEL_LOAD_ADDRESS = 0x80100000
39
KERNEL_LOAD_ADDRESS = 0x80100000
40
 
40
 
41
CFLAGS += -fno-zero-initialized-in-bss
41
CFLAGS += -fno-zero-initialized-in-bss
42
 
42
 
-
 
43
MACHINE_gxemul_testarm = 1
-
 
44
 
43
DEFS += -D__32_BITS__ -DMACHINE=$(MACHINE) -DKERNEL_LOAD_ADDRESS=$(KERNEL_LOAD_ADDRESS)
45
DEFS += -D__32_BITS__ -DMACHINE=$(MACHINE_$(MACHINE)) -DKERNEL_LOAD_ADDRESS=$(KERNEL_LOAD_ADDRESS) \
-
 
46
	-DMACHINE_GXEMUL_TESTARM=$(MACHINE_gxemul_testarm)
44
 
47
 
45
CONFIG_GXEMUL = y
48
CONFIG_GXEMUL = y
46
DEFS += -DCONFIG_GXEMUL
49
DEFS += -DCONFIG_GXEMUL
47
 
50
 
48
CONFIG_FB = y
51
CONFIG_FB = y
Line 80... Line 83...
80
	arch/$(ARCH)/src/mm/tlb.c \
83
	arch/$(ARCH)/src/mm/tlb.c \
81
	arch/$(ARCH)/src/aux_print/printf.c \
84
	arch/$(ARCH)/src/aux_print/printf.c \
82
	arch/$(ARCH)/src/aux_print/io.c \
85
	arch/$(ARCH)/src/aux_print/io.c \
83
	arch/$(ARCH)/src/console.c \
86
	arch/$(ARCH)/src/console.c \
84
	arch/$(ARCH)/src/drivers/gxemul.c \
87
	arch/$(ARCH)/src/drivers/gxemul.c \
-
 
88
	arch/$(ARCH)/src/drivers/init.c \
85
	arch/$(ARCH)/src/exception.c \
89
	arch/$(ARCH)/src/exception.c \
86
	arch/$(ARCH)/src/mm/memory_init.c
90
	arch/$(ARCH)/src/mm/memory_init.c
87
  	
91