80859e45b4
Userland and even kernel shouldn't require this anyway, cpu-specific code can still be compiled with those flags separately.
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
# ACube SAM460ex board-specific definitions
|
|
|
|
HAIKU_BOARD_DESCRIPTION = "ACube Sam460ex" ;
|
|
|
|
# must force both since they are set before this file is read.
|
|
HAIKU_BOOT_PLATFORM = u-boot ;
|
|
|
|
#FIXME!!!!!!!!!!!!!!!
|
|
#
|
|
# Various hardcoded addresses
|
|
#
|
|
|
|
# load address for haiku_loader
|
|
# HAIKU_BOARD_LOADER_BASE = 0x00000000 ;
|
|
# for debugging:
|
|
HAIKU_BOARD_LOADER_BASE = 0x02000000 ;
|
|
# entry points (raw binary, and netbsd loader emulation)
|
|
HAIKU_BOARD_LOADER_ENTRY_LINUX = 0x02000000 ;
|
|
|
|
HAIKU_BOARD_LOADER_ENTRY = $(HAIKU_BOARD_LOADER_ENTRY_LINUX) ;
|
|
HAIKU_BOARD_LOADER_FAKE_OS = linux ;
|
|
|
|
# load address for haiku_loader uimage
|
|
# (must be different than real load address)
|
|
HAIKU_BOARD_LOADER_UIBASE = 0x02000000 ;
|
|
|
|
HAIKU_BOARD_LOADER_STACK_BASE = 0x02000000 ;
|
|
|
|
#
|
|
# gcc flags for the specific cpu
|
|
#
|
|
|
|
#HAIKU_KERNEL_PIC_CCFLAGS += -mcpu=440fp -mtune=440fp ;
|
|
#HAIKU_KERNEL_PIC_C++FLAGS += -mcpu=440fp -mtune=440fp ;
|
|
#HAIKU_KERNEL_CCFLAGS += -mcpu=440fp -mtune=440fp ;
|
|
#HAIKU_KERNEL_C++FLAGS += -mcpu=440fp -mtune=440fp ;
|
|
#HAIKU_CCFLAGS += -mcpu=440fp -mtune=440fp ;
|
|
#HAIKU_C++FLAGS += -mcpu=440fp -mtune=440fp ;
|
|
|