1## 2## This file is part of the coreboot project. 3## 4## Copyright (C) 2007 Philipp Degler <pdegler@rumms.uni-mannheim.de> 5## (Thanks to LSRA University of Mannheim for their support) 6## Copyright (C) 2008 Jonathan A. Kollasch <jakllsch@kollasch.net> 7## 8## This program is free software; you can redistribute it and/or modify 9## it under the terms of the GNU General Public License as published by 10## the Free Software Foundation; either version 2 of the License, or 11## (at your option) any later version. 12## 13## This program is distributed in the hope that it will be useful, 14## but WITHOUT ANY WARRANTY; without even the implied warranty of 15## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16## GNU General Public License for more details. 17## 18## You should have received a copy of the GNU General Public License 19## along with this program; if not, write to the Free Software 20## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 21## 22 23target ms7135 24mainboard msi/ms7135 25 26option CONFIG_DEFAULT_CONSOLE_LOGLEVEL=8 27option CONFIG_MAXIMUM_CONSOLE_LOGLEVEL=8 28 29option CONFIG_HAVE_PIRQ_TABLE=1 30option CONFIG_CONSOLE_VGA=1 31option CONFIG_PCI_ROM_RUN=1 32 33 34romimage "normal" 35 option CONFIG_USE_FAILOVER_IMAGE=0 36 option CONFIG_USE_FALLBACK_IMAGE=0 37 option CONFIG_ROM_IMAGE_SIZE=0x20000 38 option CONFIG_XIP_ROM_SIZE=0x20000 39 option COREBOOT_EXTRA_VERSION="_Normal" 40 payload /tmp/payload.elf 41end 42 43romimage "fallback" 44 option CONFIG_USE_FAILOVER_IMAGE=0 45 option CONFIG_USE_FALLBACK_IMAGE=1 46 option CONFIG_ROM_IMAGE_SIZE=0x20000 47 option CONFIG_XIP_ROM_SIZE=0x20000 48 option COREBOOT_EXTRA_VERSION="_Fallback" 49 payload /tmp/payload.elf 50end 51 52romimage "failover" 53 option CONFIG_USE_FAILOVER_IMAGE=1 54 option CONFIG_USE_FALLBACK_IMAGE=0 55 option CONFIG_ROM_IMAGE_SIZE=CONFIG_FAILOVER_SIZE 56 option CONFIG_XIP_ROM_SIZE=CONFIG_FAILOVER_SIZE 57 option COREBOOT_EXTRA_VERSION="_Failover" 58end 59 60buildrom ./coreboot.rom CONFIG_ROM_SIZE "normal" "fallback" "failover" 61#buildrom ./coreboot.rom CONFIG_ROM_SIZE "normal" "fallback" 62

