├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── root.sh ├── root_fix_module ├── META-INF │ └── com │ │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script ├── README.md ├── customize.sh ├── module.prop └── system │ └── bin │ └── su ├── tools └── switch_kernel └── unroot.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: supechicken 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supechicken/ChromeOS-ARCVM-Root/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supechicken/ChromeOS-ARCVM-Root/HEAD/README.md -------------------------------------------------------------------------------- /root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supechicken/ChromeOS-ARCVM-Root/HEAD/root.sh -------------------------------------------------------------------------------- /root_fix_module/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supechicken/ChromeOS-ARCVM-Root/HEAD/root_fix_module/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /root_fix_module/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /root_fix_module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supechicken/ChromeOS-ARCVM-Root/HEAD/root_fix_module/README.md -------------------------------------------------------------------------------- /root_fix_module/customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supechicken/ChromeOS-ARCVM-Root/HEAD/root_fix_module/customize.sh -------------------------------------------------------------------------------- /root_fix_module/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supechicken/ChromeOS-ARCVM-Root/HEAD/root_fix_module/module.prop -------------------------------------------------------------------------------- /root_fix_module/system/bin/su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supechicken/ChromeOS-ARCVM-Root/HEAD/root_fix_module/system/bin/su -------------------------------------------------------------------------------- /tools/switch_kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supechicken/ChromeOS-ARCVM-Root/HEAD/tools/switch_kernel -------------------------------------------------------------------------------- /unroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supechicken/ChromeOS-ARCVM-Root/HEAD/unroot.sh --------------------------------------------------------------------------------