blob: abb920e47142288ff1a87e2d8c16933ee39d2219 [file] [log] [blame]
//
// Copyright (C) 2014 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#include "update_engine/update_manager/real_system_provider.h"
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <string>
#include <vector>
#include <base/logging.h>
#include <base/strings/stringprintf.h>
#include <base/time/time.h>
#include <vboot/crossystem.h>
#include "update_engine/update_manager/generic_variables.h"
#include "update_engine/utils.h"
using std::string;
namespace chromeos_update_manager {
bool RealSystemProvider::Init() {
var_is_normal_boot_mode_.reset(
new ConstCopyVariable<bool>("is_normal_boot_mode",
VbGetSystemPropertyInt("devsw_boot") != 0));
var_is_official_build_.reset(
new ConstCopyVariable<bool>("is_official_build",
VbGetSystemPropertyInt("debug_build") == 0));
var_is_oobe_complete_.reset(
new CallCopyVariable<bool>(
"is_oobe_complete",
base::Bind(&chromeos_update_engine::HardwareInterface::IsOOBEComplete,
base::Unretained(hardware_), nullptr)));
var_is_boot_device_removable_.reset(
new ConstCopyVariable<bool>("is_boot_device_removable",
hardware_->IsBootDeviceRemovable()));
return true;
}
} // namespace chromeos_update_manager