Idwer Vollering has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/61476 )
Change subject: isolate leaking config directive from src/mainboard/asus/h61-series/Kconfig ......................................................................
isolate leaking config directive from src/mainboard/asus/h61-series/Kconfig
While building coreboot for asus/f2a85-m, the build system shows IASL warnings that have been already taken care of.
The error was: '*** WARNING: The ASL code for this platform is incomplete. Please fix it. ***'
Change-Id: Ie6fd24923dd8d36adbe861515ce6c903697ef90d Signed-off-by: Idwer Vollering vidwer@gmail.com --- M src/mainboard/asus/h61-series/Kconfig 1 file changed, 3 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/76/61476/1
diff --git a/src/mainboard/asus/h61-series/Kconfig b/src/mainboard/asus/h61-series/Kconfig index 75dfe3c..48e4220 100644 --- a/src/mainboard/asus/h61-series/Kconfig +++ b/src/mainboard/asus/h61-series/Kconfig @@ -1,8 +1,5 @@ ## SPDX-License-Identifier: GPL-2.0-only
-config IGNORE_IASL_MISSING_DEPENDENCY - def_bool y - config BOARD_ASUS_H61_SERIES bool select HAVE_ACPI_RESUME @@ -17,6 +14,9 @@
if BOARD_ASUS_H61_SERIES
+config IGNORE_IASL_MISSING_DEPENDENCY + def_bool y + config MAINBOARD_DIR default "asus/h61-series"