1#!/system/bin/sh 2 3if [[ -f /data/misc/adb/adb_keys ]]; then 4 echo "qemu-adb-setup: /data/misc/adb/adb_keys exists. Skipping qemu adb setup" > /dev/kmsg 5else 6 echo "qemu-adb-setup: Copying over adb_keys" > /dev/kmsg 7 setprop vendor.qemu.adb.copykey 1 8fi 9