blob: b5e817ab9fbee7672e39f1c6007c017073328cdb [file] [log] [blame]
// Copyright 2020 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "biod/biod_system.h"
extern "C" {
// Use libvboot_host for accessing crossystem variables.
#include <vboot/crossystem.h>
}
namespace {
constexpr char kHardwareWriteProtect[] = "wpsw_cur";
}
namespace biod {
bool BiodSystem::HardwareWriteProtectIsEnabled() const {
return VbGetSystemPropertyInt(kHardwareWriteProtect) != 0;
}
int BiodSystem::VbGetSystemPropertyInt(const std::string& name) const {
return ::VbGetSystemPropertyInt(name.c_str());
}
} // namespace biod