This patch unifies the use of config options in v2 to all start with CONFIG_
[coreboot.git] / targets / intel / mtarvon / Config.lb
1 ##
2 ## This file is part of the coreboot project.
3 ##
4 ## Copyright (C) 2008 Arastra, Inc.
5 ##
6 ## This program is free software; you can redistribute it and/or modify
7 ## it under the terms of the GNU General Public License version 2 as
8 ## published by the Free Software Foundation.
9 ##
10 ## This program is distributed in the hope that it will be useful,
11 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ## GNU General Public License for more details.
14 ##
15 ## You should have received a copy of the GNU General Public License
16 ## along with this program; if not, write to the Free Software
17 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18 ##
19
20 target mtarvon
21 mainboard intel/mtarvon
22
23 ## CONFIG_ROM_SIZE is the total number of bytes allocated for coreboot use
24 ## (normal AND fallback images and payloads).
25 option CONFIG_ROM_SIZE = 2 * 1024 * 1024
26
27 ## CONFIG_ROM_IMAGE_SIZE is the maximum number of bytes allowed for a coreboot image,
28 ## not including any payload.
29 option CONFIG_ROM_IMAGE_SIZE = 128 * 1024
30
31 ## CONFIG_FALLBACK_SIZE is the amount of the ROM the complete fallback image
32 ## (including payload) will use
33 option CONFIG_FALLBACK_SIZE = CONFIG_ROM_SIZE
34
35 romimage "fallback"
36         option CONFIG_USE_FALLBACK_IMAGE=1
37         payload /tmp/filo.elf
38 end
39
40 buildrom ./coreboot.rom CONFIG_ROM_SIZE "fallback"