update new sdk

This commit is contained in:
August 2020-07-15 19:27:51 +08:00
parent f33907443a
commit 744c72c133
1643 changed files with 83006 additions and 28021 deletions

4
android/system/core/init/reboot.cpp Normal file → Executable file
View file

@ -99,11 +99,11 @@ class MountEntry {
void DoFsck() {
int st;
if (IsF2Fs()) {
const char* f2fs_argv[] = {
/*const char* f2fs_argv[] = {
"/system/bin/fsck.f2fs", "-f", mnt_fsname_.c_str(),
};
android_fork_execvp_ext(arraysize(f2fs_argv), (char**)f2fs_argv, &st, true, LOG_KLOG,
true, nullptr, nullptr, 0);
true, nullptr, nullptr, 0);*/
} else if (IsExt4()) {
const char* ext4_argv[] = {
"/system/bin/e2fsck", "-f", "-y", mnt_fsname_.c_str(),