You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/system/bin/sh
|
|
|
|
if [[ -f /data/misc/adb/adb_keys ]]; then
|
|
echo "qemu-adb-setup: /data/misc/adb/adb_keys exists. Skipping qemu adb setup" > /dev/kmsg
|
|
else
|
|
echo "qemu-adb-setup: Copying over adb_keys" > /dev/kmsg
|
|
setprop vendor.qemu.adb.copykey 1
|
|
fi
|