diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2018-06-11 10:22:55 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-06-14 09:41:28 +0000 |
commit | 2abde07b9d9ec68cf2a4683accb048bc56612eb4 (patch) | |
tree | d10f1ae5dc460799a951b467f155877839b23940 /src/mainboard/lenovo/x200/gma-mainboard.ads | |
parent | e8093054d39edb364be54c44ec5b728f26024ee5 (diff) |
mb/lenovo/x200: Enable libgfxinit
Change-Id: I6919845965d90fe8a20a07748ae4804fed0d0cef
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/27013
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/lenovo/x200/gma-mainboard.ads')
-rw-r--r-- | src/mainboard/lenovo/x200/gma-mainboard.ads | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/mainboard/lenovo/x200/gma-mainboard.ads b/src/mainboard/lenovo/x200/gma-mainboard.ads new file mode 100644 index 0000000000..92702b2978 --- /dev/null +++ b/src/mainboard/lenovo/x200/gma-mainboard.ads @@ -0,0 +1,30 @@ +-- +-- This file is part of the coreboot project. +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- 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. +-- + +with HW.GFX.GMA; +with HW.GFX.GMA.Display_Probing; + +use HW.GFX.GMA; +use HW.GFX.GMA.Display_Probing; + +private package GMA.Mainboard is + + ports : constant Port_List := + (DP2, + HDMI2, + Analog, + Internal, + others => Disabled); + +end GMA.Mainboard; |