SPDX: Convert all of our single license tags to Linux Kernel styleWhen U-Boot started using SPDX tags we were among the early adopters andthere weren't a lot of other examples to borrow from. So
SPDX: Convert all of our single license tags to Linux Kernel styleWhen U-Boot started using SPDX tags we were among the early adopters andthere weren't a lot of other examples to borrow from. So we picked thearea of the file that usually had a full license text and replaced itwith an appropriate SPDX-License-Identifier: entry. Since then, theLinux Kernel has adopted SPDX tags and they place it as the very firstline in a file (except where shebangs are used, then it's second line)and with slightly different comment styles than us.In part due to community overlap, in part due to better tag visibilityand in part for other minor reasons, switch over to that style.This commit changes all instances where we have a single declaredlicense in the tag as both the before and after are identical in tagcontents. There's also a few places where I found we did not have a tagand have introduced one.Signed-off-by: Tom Rini <trini@konsulko.com>
show more ...
verified-boot: Minimal support for booting U-Boot proper from SPLThis allows a board to configure verified boot within the SPL usinga FIT or FIT with external data. It also allows the SPL to perfo
verified-boot: Minimal support for booting U-Boot proper from SPLThis allows a board to configure verified boot within the SPL usinga FIT or FIT with external data. It also allows the SPL to performsignature verification without needing relocation.The board configuration will need to add the following feature defines:CONFIG_SPL_CRYPTO_SUPPORTCONFIG_SPL_HASH_SUPPORTCONFIG_SPL_SHA256In this example, SHA256 is the only selected hashing algorithm.And the following booleans:CONFIG_SPL=yCONFIG_SPL_DM=yCONFIG_SPL_LOAD_FIT=yCONFIG_SPL_FIT=yCONFIG_SPL_OF_CONTROL=yCONFIG_SPL_OF_LIBFDT=yCONFIG_SPL_FIT_SIGNATURE=ySigned-off-by: Teddy Reed <teddy.reed@gmail.com>Acked-by: Simon Glass <sjg@chromium.org>Acked-by: Andreas Dannenberg <dannenberg@ti.com>Acked-by: Sumit Garg <sumit.garg@nxp.com>
rsa : Compile Modular Exponentiation files based on CONFIG_RSA_SOFTWARE_EXPRemove dependency of rsa_mod_exp from CONFIG_FIT_SIGNATURE.As rsa modular exponentiation is an independent moduleand can
rsa : Compile Modular Exponentiation files based on CONFIG_RSA_SOFTWARE_EXPRemove dependency of rsa_mod_exp from CONFIG_FIT_SIGNATURE.As rsa modular exponentiation is an independent moduleand can be invoked independently.Signed-off-by: Gaurav Rana <gaurav.rana@freescale.com>Acked-by: Simon Glass <sjg@chromium.org>Reviewed-by: York Sun <yorksun@freescale.com>
DM: crypto/rsa_mod_exp: Add rsa Modular Exponentiation DM driverAdd a new rsa uclass for performing modular exponentiation and implementthe software driver basing on this uclass.Signed-off-by: R
DM: crypto/rsa_mod_exp: Add rsa Modular Exponentiation DM driverAdd a new rsa uclass for performing modular exponentiation and implementthe software driver basing on this uclass.Signed-off-by: Ruchika Gupta <ruchika.gupta@freescale.com>CC: Simon Glass <sjg@chromium.org>Acked-by: Simon Glass <sjg@chromium.org>