blob: d6578de8dca4fd5bc2dd53a4f077d0a2bc0aa9d3 [file] [log] [blame]
Uwe Hermann70b0cf22009-10-04 17:15:39 +00001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
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 as published by
Nils Jacobsdd6ad342010-05-14 09:48:05 +00008## the Free Software Foundation; version 2 of the License.
Uwe Hermann70b0cf22009-10-04 17:15:39 +00009##
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
Paul Menzela46a7122013-02-23 18:37:27 +010017## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Uwe Hermann70b0cf22009-10-04 17:15:39 +000018##
Jens Rottmann9a684fc2010-08-30 16:36:51 +000019if VENDOR_IEI
Uwe Hermann70b0cf22009-10-04 17:15:39 +000020
21choice
22 prompt "Mainboard model"
Jens Rottmann9a684fc2010-08-30 16:36:51 +000023
Marc Jones3f1d29c2010-09-13 19:31:21 +000024config BOARD_IEI_KINO_FAM10
25 bool "Kino-780AM2(Fam10)"
Jens Rottmann9a684fc2010-08-30 16:36:51 +000026config BOARD_IEI_PCISA_LX_800_R10
27 bool "PCISA LX-800-R10"
Ricardo Martins0ca02552012-07-04 03:09:49 +010028config BOARD_IEI_PM_LX_800_R11
29 bool "PM LX-800-R11"
Ricardo Martins892d8d22012-08-06 05:40:07 +010030config BOARD_IEI_PM_LX2_800_R10
31 bool "PM LX2-800-R10"
Jens Rottmann9a684fc2010-08-30 16:36:51 +000032
33endchoice
Uwe Hermann70b0cf22009-10-04 17:15:39 +000034
Marc Jones3f1d29c2010-09-13 19:31:21 +000035source "src/mainboard/iei/kino-780am2-fam10/Kconfig"
Patrick Georgi98402452009-10-08 14:31:56 +000036source "src/mainboard/iei/pcisa-lx-800-r10/Kconfig"
Ricardo Martins0ca02552012-07-04 03:09:49 +010037source "src/mainboard/iei/pm-lx-800-r11/Kconfig"
Ricardo Martins892d8d22012-08-06 05:40:07 +010038source "src/mainboard/iei/pm-lx2-800-r10/Kconfig"
Uwe Hermann70b0cf22009-10-04 17:15:39 +000039
Jens Rottmann9a684fc2010-08-30 16:36:51 +000040config MAINBOARD_VENDOR
41 string
42 default "IEI"
Uwe Hermann70b0cf22009-10-04 17:15:39 +000043
Jens Rottmann9a684fc2010-08-30 16:36:51 +000044endif # VENDOR_IEI