1## 2## This file is part of the coreboot project. 3## 4## Copyright (C) 2006 Segher Boessenkool <segher@kernel.crashing.org> 5## Copyright (C) 2006-2007 coresystems GmbH 6## (Written by Stefan Reinauer <stepan@coresystems.de> for coresystems GmbH) 7## Copyright (C) 2007 Uwe Hermann <uwe@hermann-uwe.de> 8## 9## This program is free software; you can redistribute it and/or modify 10## it under the terms of the GNU General Public License as published by 11## the Free Software Foundation; version 2 of the License. 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 23choice 24 prompt "Mainboard model" 25 depends on VENDOR_EMULATION 26 27config BOARD_EMULATION_QEMU_X86 28 bool "QEMU x86" 29 select ARCH_X86 30 select CPU_I586 31 select NORTHBRIDGE_INTEL_I440BXEMULATION 32 select SOUTHBRIDGE_INTEL_I82371EB 33 help 34 x86 QEMU variant. 35 36endchoice 37 38config MAINBOARD_DIR 39 string 40 default emulation/qemu-x86 41 depends BOARD_EMULATION_QEMU_X86 42 43

