diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-05-17 13:03:36 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-05-18 11:51:02 +0000 |
commit | 9d54a228092e627ad7f159bb21e45c468c2f9f2c (patch) | |
tree | 1909eb5bcf8b25a2d7aa027ded23bf7db6fd74f7 /src/mainboard/asus/h61-series/variants/h61m-cs/gma-mainboard.ads | |
parent | 14b7e655bf876e8389bc83bc30e702ca3c58e845 (diff) |
mb/asus/h61m-cs: Transform into variant setup
To preserve reproducibility, temporarily guard mainboard.c contents.
This will be removed once all boards have become variants.
Tested with BUILD_TIMELESS=1, coreboot.rom for the Asus H61M-CS
remains identical when not adding the .config file in it.
Change-Id: I1ffb41470d24713a4a7f0689958b733d4b1bdf52
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/54374
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/mainboard/asus/h61-series/variants/h61m-cs/gma-mainboard.ads')
-rw-r--r-- | src/mainboard/asus/h61-series/variants/h61m-cs/gma-mainboard.ads | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/mainboard/asus/h61-series/variants/h61m-cs/gma-mainboard.ads b/src/mainboard/asus/h61-series/variants/h61m-cs/gma-mainboard.ads new file mode 100644 index 0000000000..f07946ae2d --- /dev/null +++ b/src/mainboard/asus/h61-series/variants/h61m-cs/gma-mainboard.ads @@ -0,0 +1,13 @@ +-- SPDX-License-Identifier: GPL-2.0-only + +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 := + (Analog, + others => Disabled); +end GMA.Mainboard; |