diff mbox

[v3,1/2] configure: add CONFIG_IASL to config-host.h

Message ID 1387987339-16046-2-git-send-email-marcel.a@redhat.com
State New
Headers show

Commit Message

Marcel Apfelbaum Dec. 25, 2013, 4:02 p.m. UTC
Acpi unit-tests will extract iasl executable
from CONFIG_IASL define.

Signed-off-by: Marcel Apfelbaum <marcel.a@redhat.com>
---
v1 -> v2
 - Removed double-quote characters around iasl
   value because it will be stringified in the
   test itself

 scripts/create_config | 4 ++++
 1 file changed, 4 insertions(+)
diff mbox

Patch

diff --git a/scripts/create_config b/scripts/create_config
index b1adbf5..06f5316 100755
--- a/scripts/create_config
+++ b/scripts/create_config
@@ -26,6 +26,10 @@  case $line in
     # save for the next definitions
     prefix=${line#*=}
     ;;
+ IASL=*) # iasl executable
+    value=${line#*=}
+    echo "#define CONFIG_IASL $value"
+    ;;
  CONFIG_AUDIO_DRIVERS=*)
     drivers=${line#*=}
     echo "#define CONFIG_AUDIO_DRIVERS \\"