ACK: [PATCH 2/2] securebootcert: need to check the efivars interface existence while checking the variable db and kek

Alex Hung alex.hung at canonical.com
Tue May 21 06:02:04 UTC 2013


On 05/16/2013 04:35 PM, Ivan Hu wrote:
> Checking the variable db and kek needs the efivars interface, not var interface.
> Adding the checking the efivars interface existence for skipping the test instead of giving fails.
>
> Signed-off-by: Ivan Hu <ivan.hu at canonical.com>
> ---
>   src/uefi/securebootcert/securebootcert.c |    5 +++++
>   1 file changed, 5 insertions(+)
>
> diff --git a/src/uefi/securebootcert/securebootcert.c b/src/uefi/securebootcert/securebootcert.c
> index 8325a5d..4baf3a9 100644
> --- a/src/uefi/securebootcert/securebootcert.c
> +++ b/src/uefi/securebootcert/securebootcert.c
> @@ -330,6 +330,11 @@ static int securebootcert_init(fwts_framework *fw)
>   		return FWTS_ABORTED;
>   	}
>
> +	if (!fwts_uefi_efivars_iface_exist()) {
> +		fwts_log_info(fw, "Cannot detect efivars interface. Aborted.");
> +		return FWTS_ABORTED;
> +	}
> +
>   	return FWTS_OK;
>   }
>
>
Acked-by: Alex Hung <alex.hung at canonical.com>



More information about the fwts-devel mailing list