diff options
author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2012-07-13 11:36:08 +0200 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2012-07-13 14:34:31 +0200 |
commit | 86f992c38a2b64619d924adf66d77f4fe8494b81 (patch) | |
tree | 9307469cfad249f31ec7e3143a655958bb29dc67 /src/mainboard/bachmann/ot200/mainboard.c | |
parent | 42b808e889b32344977fa067120ea02fa803e9a4 (diff) | |
download | coreboot-86f992c38a2b64619d924adf66d77f4fe8494b81.tar.xz |
Add preliminary support for Bachmann electronic OT200
Linux boots fine :)
Change-Id: Ifda06e5220666534b87f528deae16d8b956c32b3
Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Reviewed-on: http://review.coreboot.org/1225
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/mainboard/bachmann/ot200/mainboard.c')
-rw-r--r-- | src/mainboard/bachmann/ot200/mainboard.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/mainboard/bachmann/ot200/mainboard.c b/src/mainboard/bachmann/ot200/mainboard.c new file mode 100644 index 0000000000..76b3c53568 --- /dev/null +++ b/src/mainboard/bachmann/ot200/mainboard.c @@ -0,0 +1,24 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2012 Bachmann electronic GmbH + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include <device/device.h> + +struct chip_operations mainboard_ops = { + CHIP_NAME(CONFIG_MAINBOARD_VENDOR " " CONFIG_MAINBOARD_PART_NUMBER) +}; |