0a163b65c7
This removes the need for the whole HAIKU_BOARD_LOADER_STACK_BASE sing and dance, since it is always included in the bootloader binary itself.
38 lines
1.0 KiB
Plaintext
38 lines
1.0 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 ;
|
|
|
|
#
|
|
# 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 ;
|
|
|