Lines Matching +full:auto +full:- +full:boot
5 #include <phosphor-logging/lg2.hpp>
14 constexpr auto PROPERTY_INTERFACE = "org.freedesktop.DBus.Properties";
57 auto bus = sdbusplus::bus::new_default(); in checkTpmMeasurement()
72 auto bus = sdbusplus::bus::new_default(); in isMfgModeEnabled()
81 auto method = bus.new_method_call(service.c_str(), path.c_str(), in isMfgModeEnabled()
88 auto reply = bus.call(method); in isMfgModeEnabled()
103 // Read the secure boot gpio in main()
104 auto secureBootGpio = in main()
105 phosphor::state::manager::utils::getGpioValue("bmc-secure-boot"); in main()
106 if (secureBootGpio == -1) in main()
108 debug("bmc-secure-boot gpio not present or can not be read"); in main()
112 info("bmc-secure-boot gpio found and indicates it is NOT enabled"); in main()
116 info("bmc-secure-boot found and indicates it is enabled"); in main()
122 int secureBootVal = -1; in main()
123 int abrImage = -1; in main()
141 error("Failed to read secure boot sysfs file: {ERROR}", "ERROR", e); in main()
185 auto bus = sdbusplus::bus::new_default(); in main()