zoukankan      html  css  js  c++  java
  • ro.boot.bootreason property设置(androidboot.xxxx bootargs)

    ro.boot.bootreason property设置(androidboot.xxxx bootargs)

    system/core/init.cpp

    static void process_kernel_cmdline() {
        // The first pass does the common stuff, and finds if we are in qemu.
        // The second pass is only necessary for qemu to export all kernel params
        // as properties.
        import_kernel_cmdline(false, import_kernel_nv);
        if (qemu[0]) import_kernel_cmdline(true, import_kernel_nv);
    }
    static void import_kernel_nv(const std::string& key, const std::string& value, bool for_emulator) {
        if (key.empty()) return;
    
        if (for_emulator) {
            // In the emulator, export any kernel option with the "ro.kernel." prefix.
            property_set("ro.kernel." + key, value);
            return;
        }
    
        if (key == "qemu") {
            strlcpy(qemu, value.c_str(), sizeof(qemu));
        } else if (android::base::StartsWith(key, "androidboot.")) {
            property_set("ro.boot." + key.substr(12), value);
        }
    }
    void SetSystemBootReason() {
      const auto bootloader_boot_reason =
          android::base::GetProperty(bootloader_reboot_reason_property, "");
      const std::string system_boot_reason(BootReasonStrToReason(bootloader_boot_reason));
      // Record the scrubbed system_boot_reason to the property
      BootReasonAddToHistory(system_boot_reason);
    exec_background - system log -- /system/bin/bootstat --set_system_boot_reason --record_boot_complete --record_boot_reason --record_time_since_factory_reset -l 

     

  • 相关阅读:
    全局获取Context
    下拉刷新 SwipeRefreshLayout
    更高级的ToolBar使用----AppBarLayout
    卡片布局CardView
    Design Support的CoordinatorLayout布局
    悬浮按钮FloatingActionButton
    继续滑动菜单的完善,NavigationView,图片圆形化-CircleImageView
    修改电脑hosts文件
    Activity生命周期和启动模式
    活动的基本用法
  • 原文地址:https://www.cnblogs.com/aspirs/p/14762370.html
Copyright © 2011-2022 走看看