1
2CFG_MLONG64 ?= 0
3CFG_LITTLE ?= 0
4CFG_RELOC ?= 1
5CFG_UNCACHED ?= 0
6CFG_VAPI ?= 0
7CFG_BOOTRAM ?= 0
8CFG_BOARDNAME = "VCS"
9CFG_PCI = 0
10
11TOP = ../../../cfe
12ARCH = mips
13CPU = sb1250
14BOARD = vcs
15
16include ${TOP}/main/cfe.mk
17
18BSPOBJS = vcs_init.o vcs_devs.o diag_null.o
19
20#
21# These settings speed up the cache init by not doing too much of it.
22# This helps boot time in the sim.
23# They also adjust timers and other hardware stuff 
24# for running in the functional simulator (mostly changes CPU speed to 
25# 500Khz).  Remove this before using on real hardware.
26#
27CFLAGS += -D_FASTINIT_ -D_FASTEMUL_ -D_FUNCSIM_
28CFLAGS += -U_SB1250_PASS1_WORKAROUNDS_
29
30ALL : cfe cfe.flash
31	echo done
32
33include ${TOP}/main/cfe_link.mk
34