blob: 220c791ae2074e848206ae87c8bce8811b222dbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Config file for the Momentum Apache dual 970 board
# This will make a target directory of ./apache
target apache
mainboard momentum/apache
# Apache Demo Board
romimage "normal"
## Base of ROM
option _ROMBASE=0xfff00000
## Apache reset vector
option _RESET=_ROMBASE+0x100
## Exception vectors (other than reset vector)
option _EXCEPTION_VECTORS=_RESET+0x100
## Start of linuxBIOS in the boot rom
## = _RESET + exeception vector table size
option _ROMSTART=_RESET+0x3100
## LinuxBIOS C code runs at this location in RAM
option _RAMBASE=0x00100000
option _RAMSTART=0x00100000
end
buildrom ./linuxbios.rom ROM_SIZE "normal"
|