OSDN Git Service

disassemble-aml: -o actually works
authorMichael S. Tsirkin <mst@redhat.com>
Tue, 4 Aug 2020 15:21:05 +0000 (11:21 -0400)
committerMichael S. Tsirkin <mst@redhat.com>
Thu, 27 Aug 2020 12:27:48 +0000 (08:27 -0400)
Turns out that option was borken due to weird iasl
command line handling. Fix it.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
tests/data/acpi/disassemle-aml.sh

index 1d8a4d0..253b762 100755 (executable)
@@ -42,11 +42,16 @@ do
         else
             extra=""
         fi
-        asl=${aml}.dsl
         if [[ "${outdir}" ]];
         then
-            asl="${outdir}"/${machine}/${asl}
+            # iasl strips an extension from prefix if there.
+            # since we have some files with . in the name, the
+            # last component gets interpreted as an extension:
+            # add another extension to work around that.
+            prefix="-p ${outdir}/${aml}.dsl"
+        else
+            prefix=""
         fi
-        iasl -d -p ${asl} ${extra} ${aml}
+        iasl ${extra} ${prefix} -d ${aml}
     done
 done