mirror of
https://github.com/topjohnwu/Magisk.git
synced 2026-01-17 15:23:31 -08:00
- correct 'booloader' typo breaking bootloader entry - remove extra bootloader entry Shell.su line which is unnecessary since it's covered by reboot() - revert to using `reboot recovery` for recovery entry since `svc power reboot recovery` triggers a very disconcerting "Factory data reset" reboot dialog on many devices - add Reboot to EDL mode option for good measure
30 lines
830 B
XML
30 lines
830 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<item
|
|
android:id="@+id/reboot"
|
|
android:title="@string/reboot"
|
|
app:showAsAction="never" />
|
|
|
|
<item
|
|
android:id="@+id/reboot_recovery"
|
|
android:title="@string/reboot_recovery"
|
|
app:showAsAction="never" />
|
|
|
|
<item
|
|
android:id="@+id/reboot_bootloader"
|
|
android:title="@string/reboot_bootloader"
|
|
app:showAsAction="never" />
|
|
|
|
<item
|
|
android:id="@+id/reboot_download"
|
|
android:title="@string/reboot_download"
|
|
app:showAsAction="never" />
|
|
|
|
<item
|
|
android:id="@+id/reboot_edl"
|
|
android:title="@string/reboot_edl"
|
|
app:showAsAction="never" />
|
|
|
|
</menu> |