the proc handler does: secure_boot_enabled = efi_enabled(EFI_SECURE_BOOT);
this feature flag is set at boot:
#ifdef CONFIG_EFI_SECURE_BOOT_SIG_ENFORCE
if (boot_params.secure_boot == EFI_SECURE_BOOT) { set_bit(EFI_SECURE_BOOT, &efi.flags); enforce_signed_modules(); pr_info("Secure boot enabled\n");
}
And since I don't see the pr_info, nor the flag, nor the module enforcement, the boot_params is probably missing?
the proc handler does:
secure_ boot_enabled = efi_enabled( EFI_SECURE_ BOOT); EFI_SECURE_ BOOT_SIG_ ENFORCE secure_ boot == EFI_SECURE_BOOT) {
set_bit( EFI_SECURE_ BOOT, &efi.flags);
enforce_ signed_ modules( );
pr_info( "Secure boot enabled\n");
this feature flag is set at boot:
#ifdef CONFIG_
if (boot_params.
}
And since I don't see the pr_info, nor the flag, nor the module enforcement, the boot_params is probably missing?