This patch unifies the use of config options in v2 to all start with CONFIG_
[coreboot.git] / targets / totalimpact / briq / Config.lb
1 # Config file for the Total Impact briQ
2 # This will make a target directory of ./briq
3
4 target briq
5         
6 mainboard totalimpact/briq
7
8 ## Use stage 1 initialization code
9 option CONFIG_USE_INIT=1
10
11 ## We don't use compressed image
12 option CONFIG_COMPRESS=0
13
14 ## Turn off POST codes
15 option CONFIG_NO_POST=1
16
17 ## Enable serial console
18 option CONFIG_DEFAULT_CONSOLE_LOGLEVEL=8
19 option CONFIG_CONSOLE_SERIAL8250=1
20
21 ## Boot linux from IDE
22 option CONFIG_IDE_PAYLOAD=1
23 option CONFIG_IDE_BOOT_DRIVE=0
24 option CONFIG_IDE_SWAB=1
25 option CONFIG_IDE_OFFSET=0
26
27 # ROM is 1Mb
28 option CONFIG_ROM_SIZE=1024*1024
29
30 # Set stack and heap sizes (stage 2)
31 option CONFIG_STACK_SIZE=0x10000
32 option CONFIG_HEAP_SIZE=0x10000
33
34 # Sandpoint Demo Board
35 romimage "normal"
36         ## Base of ROM
37         option CONFIG_ROMBASE=0xfff00000
38
39         ## Sandpoint reset vector
40         option CONFIG_RESET=CONFIG_ROMBASE+0x100
41
42         ## Exception vectors (other than reset vector)
43         option CONFIG_EXCEPTION_VECTORS=CONFIG_RESET+0x100
44
45         ## Start of coreboot in the boot rom
46         ## = CONFIG_RESET + exeception vector table size
47         option CONFIG_ROMSTART=CONFIG_RESET+0x3100
48
49         ## Coreboot C code runs at this location in RAM
50         option CONFIG_RAMBASE=0x00100000
51         option CONFIG_RAMSTART=0x00100000
52
53         option CONFIG_BRIQ_750FX=1
54         #option CONFIG_BRIQ_7400=1
55
56 end
57
58 buildrom ./coreboot.rom CONFIG_ROM_SIZE "normal"