1## 2## This file is part of the coreboot project. 3## 4## Copyright (C) 2007 coresystems GmbH 5## (Written by Stefan Reinauer <stepan@coresystems.de> for coresystems GmbH) 6## 7## This program is free software; you can redistribute it and/or modify 8## it under the terms of the GNU General Public License as published by 9## the Free Software Foundation; either version 2 of the License, or 10## (at your option) any later version. 11## 12## This program is distributed in the hope that it will be useful, 13## but WITHOUT ANY WARRANTY; without even the implied warranty of 14## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15## GNU General Public License for more details. 16## 17## You should have received a copy of the GNU General Public License 18## along with this program; if not, write to the Free Software 19## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 20## 21 22choice 23 prompt "Mainboard model" 24 depends on VENDOR_ARTECGROUP 25 26config BOARD_ARTECGROUP_DBE61 27 bool "DBE61" 28 select ARCH_X86 29 select CPU_AMD_GEODELX 30 select NORTHBRIDGE_AMD_GEODELX 31 select SOUTHBRIDGE_AMD_CS5536 32 select DEVICE_AMD_CS5536_NAND 33 select PIRQ_TABLE 34 help 35 Artec Group DBE61 ThinCan, also known as Linutop 1. 36 37config BOARD_ARTECGROUP_DBE62 38 bool "DBE62" 39 select ARCH_X86 40 select CPU_AMD_GEODELX 41 select NORTHBRIDGE_AMD_GEODELX 42 select SOUTHBRIDGE_AMD_CS5536 43 select DEVICE_AMD_CS5536_NAND 44 select PIRQ_TABLE 45 help 46 Artec Group DBE62 ThinCan. 47 48config BOARD_ARTECGROUP_DBE63 49 bool "DBE63" 50 select ARCH_X86 51 select CPU_AMD_GEODELX 52 select NORTHBRIDGE_AMD_GEODELX 53 select SOUTHBRIDGE_AMD_CS5536 54 select PIRQ_TABLE 55 depends EXPERIMENTAL 56 help 57 Artec Group DBE63 ThinCan. 58 59endchoice 60 61config MAINBOARD_DIR 62 string 63 default artecgroup/dbe61 64 depends BOARD_ARTECGROUP_DBE61 65 66config MAINBOARD_DIR 67 string 68 default artecgroup/dbe62 69 depends BOARD_ARTECGROUP_DBE62 70 71config MAINBOARD_DIR 72 string 73 default artecgroup/dbe63 74 depends BOARD_ARTECGROUP_DBE63 75

