diff options
| -rw-r--r-- | vm/adb/adb.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/adb/adb.go b/vm/adb/adb.go index 6b546678e..79c4ebe12 100644 --- a/vm/adb/adb.go +++ b/vm/adb/adb.go @@ -406,7 +406,7 @@ func (inst *instance) repair() error { inst.waitForBootCompletion() // Mount debugfs. - if _, err := inst.adb("shell", "ls /sys/kernel/debug/kcov"); err != nil { + if _, err := inst.adb("shell", "ls /sys/kernel/debug"); err != nil { log.Logf(2, "debugfs was unmounted mounting") // This prop only exist on Android 12+ inst.adb("shell", "setprop persist.dbg.keep_debugfs_mounted 1") |
