Index: build/android/install_emulator_deps.py |
diff --git a/build/android/install_emulator_deps.py b/build/android/install_emulator_deps.py |
index bb544c21ec995098e463bb53de5ecb372035ebd1..c7445a14996d5acb15bc368aac044c3b3a3daf6e 100755 |
--- a/build/android/install_emulator_deps.py |
+++ b/build/android/install_emulator_deps.py |
@@ -13,7 +13,6 @@ install and enable KVM, if virtualization has been enabled in the BIOS. |
import logging |
import os |
import shutil |
-import subprocess |
import sys |
from pylib import cmd_helper |
@@ -62,6 +61,7 @@ def CheckKVM(): |
try: |
return not cmd_helper.RunCmd(['kvm-ok']) |
except OSError: |
+ logging.info('kvm-ok not installed') |
return False |
@@ -133,6 +133,8 @@ def main(argv): |
else: |
GetSDK() |
+ logging.info('Emulator deps for ARM emulator complete.') |
+ |
if CheckX86Image(): |
logging.info('system-images directory already exists.') |
else: |