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 20target mtarvon 21mainboard intel/mtarvon 22 23## CONFIG_ROM_SIZE is the total number of bytes allocated for coreboot use 24## (normal AND fallback images and payloads). 25option 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. 29option 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 33option CONFIG_FALLBACK_SIZE = CONFIG_ROM_SIZE 34 35romimage "fallback" 36 option CONFIG_USE_FALLBACK_IMAGE=1 37 payload /tmp/filo.elf 38end 39 40buildrom ./coreboot.rom CONFIG_ROM_SIZE "fallback" 41

