diff options
author | Steve McIntyre <steve@einval.com> | 2022-06-23 00:16:56 +0100 |
---|---|---|
committer | Steve McIntyre <steve@einval.com> | 2022-06-23 00:16:56 +0100 |
commit | e6ace38abd705fbe24349152b7c90d473404e86e (patch) | |
tree | 50e7a2d6b00d650fcbee8b0c54f0a0eacefc6929 /include/mok.h | |
parent | 8529e0f7f70f427a7202815061362eceba6bfc50 (diff) | |
download | efi-boot-shim-upstream/15.6.tar.gz efi-boot-shim-upstream/15.6.zip |
New upstream version 15.6upstream/15.6
Diffstat (limited to 'include/mok.h')
-rw-r--r-- | include/mok.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/mok.h b/include/mok.h index 96da397a..fb19423b 100644 --- a/include/mok.h +++ b/include/mok.h @@ -59,6 +59,9 @@ struct mok_state_variable { UINT8 **addend; UINT32 *addend_size; + UINT8 **user_cert; + UINT32 *user_cert_size; + /* * build_cert is our build-time cert. Like addend, this is added * to the input variable, as part of the runtime variable, so that @@ -97,5 +100,10 @@ struct mok_variable_config_entry { UINT8 data[]; }; +/* + * bit definitions for MokPolicy + */ +#define MOK_POLICY_REQUIRE_NX 1 + #endif /* !SHIM_MOK_H_ */ // vim:fenc=utf-8:tw=75:noet |