diff options
author | Marcel Apfelbaum <marcel.a@redhat.com> | 2013-12-26 16:54:22 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2014-01-26 13:06:49 +0200 |
commit | 9dd6cabdd3bfa49d4f594956e8ee93f8996460c7 (patch) | |
tree | de32b98cae9b340347c0f26d3ee4307548fd0d03 /scripts | |
parent | 9e8458c0232356a0c0eebb4fa4928fd02250c5f4 (diff) | |
download | hqemu-9dd6cabdd3bfa49d4f594956e8ee93f8996460c7.zip hqemu-9dd6cabdd3bfa49d4f594956e8ee93f8996460c7.tar.gz |
configure: add CONFIG_IASL to config-host.h
Acpi unit-tests will extract iasl executable
from CONFIG_IASL define.
Signed-off-by: Marcel Apfelbaum <marcel.a@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/create_config | 4 |
1 files changed, 4 insertions, 0 deletions
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 \\" |