From 21b20c72d34a396de764bdbb0e1ed5c2c5b4a85a Mon Sep 17 00:00:00 2001 From: Archana Date: Sun, 19 Dec 2021 10:02:23 +0530 Subject: [PATCH] Add Changelog and update documentation Signed-off-by: Archana --- ChangeLog.d/Driver_wrapper_codegen_1.0.txt | 6 ++++++ .../proposed/psa-driver-wrappers-codegen-migration-guide.md | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 ChangeLog.d/Driver_wrapper_codegen_1.0.txt diff --git a/ChangeLog.d/Driver_wrapper_codegen_1.0.txt b/ChangeLog.d/Driver_wrapper_codegen_1.0.txt new file mode 100644 index 0000000000..8e97b01bb4 --- /dev/null +++ b/ChangeLog.d/Driver_wrapper_codegen_1.0.txt @@ -0,0 +1,6 @@ +Features + * Add support for driver wrapper codegen 1.0. This autogenerates + the file library/psa_crypto_driver_wrappers.c. Rev 1.0 does not + support any additional templating. For further info on how to + patch into the psa_crypto_driver_wrappers.c refer + docs/proposed/psa-driver-wrappers-codegen-migration-guide.md diff --git a/docs/proposed/psa-driver-wrappers-codegen-migration-guide.md b/docs/proposed/psa-driver-wrappers-codegen-migration-guide.md index 6933aa4332..4f82bedd54 100644 --- a/docs/proposed/psa-driver-wrappers-codegen-migration-guide.md +++ b/docs/proposed/psa-driver-wrappers-codegen-migration-guide.md @@ -29,4 +29,4 @@ While that is the larger goal, for version 1.0 here's what's changed (1) psa_crypto_driver_wrappers.c will from this point on be auto generated. (2) The auto generation is based on the template file at scripts/data_files/driver_templates/psa_crypto_driver_wrappers.c.jinja. -(3) So while all driver wrapper templating support is yet to come in, the library user will need to patch into the template file as needed. +(3) So while all driver wrapper templating support is yet to come in, the library user will need to patch into the template file as needed, this could be read as replacing the template file with the current psa_crypto_driver_wrappers.c file maintained by the library user.