mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
cf87f7cd8c
This pull request * provides an implementation of UEFI secure booting * fixes a problem with the rsa_mod_exp driver which stops some boards from booting when CONFIG_RSA is enabled which is needed for UEFI secure booting * enables the EFI_RNG_PROTOCOL if DM_RNG is enabled * fixes some function comments -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEbcT5xx8ppvoGt20zxIHbvCwFGsQFAl6YjlcACgkQxIHbvCwF GsQ6Jg/+KVRQF0Dn2jiag8Me9ZhafZx4xGTI3LEzFD7V9kG3dmUzbO3m8a5dEevW bcPNA6EmcKAjyP09AZY4C8ns4sU7wzPu/GQvApD4S5+vcuNbEqRHfW6zzReNXq09 t89DrFH+XLhGnh4uSh0hmfjrlIPVi86hs/f57vKRayrBu8W2yGPci3SNTO5Y0AY1 to7sxP3hGlDCUhqIABWp5ylpWWUSG1MsVNcMOnHpj+jl0iWWYP46EQrGr95egQor gcGgUOLdOLLOHPYUIOBmo9INnS2MbvE9Mfgh5Bw7JW8DIu/Xp7r1qePQyMLsngc1 pO5yzwMq6EQy6OjuYnXdIBXtHOlZ8rnE9pbTgyUR8T/2CdL2hqr9ddpqa4ryDABX iaQF8FG+KhY0XQ5EIJV7pEkvf9TMwGguJNlOkmJPeub2n9i0k1tPk0Rwq5ZWWBIn rHcgZXwl0On3O3f0HvfL0Oas5u9KE1HhA12h/EVmu2Muy36x2WxAAzDnsH19HzqU QnWBAo8VMyp3qTIZjb3y+qrxcU/joPGt9+hxmur03hzmKOJ9JNOv6vExb+yUIyXQ 4ML6jvTvSVZbvkP++0zMKOjT8ks3xv5q84oFD5Gp4cG8ZpHpA9dj3mXM92Waepo4 pAkko5IGQ4SqaGIBltEQzrG+cCiHHezdD/raCwAo6DgYSmfZUvc= =+ZDZ -----END PGP SIGNATURE----- Merge tag 'efi-2020-07-rc1' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi Pull request for UEFI sub-system for efi-2020-07-rc1 This pull request * provides an implementation of UEFI secure booting * fixes a problem with the rsa_mod_exp driver which stops some boards from booting when CONFIG_RSA is enabled which is needed for UEFI secure booting * enables the EFI_RNG_PROTOCOL if DM_RNG is enabled * fixes some function comments |
||
---|---|---|
.. | ||
dm | ||
env | ||
fs | ||
image | ||
lib | ||
log | ||
optee | ||
overlay | ||
py | ||
stdint | ||
trace | ||
bloblist.c | ||
cmd_ut.c | ||
command_ut.c | ||
common.sh | ||
compression.c | ||
Kconfig | ||
Makefile | ||
print_ut.c | ||
README | ||
run | ||
time_ut.c | ||
unicode_ut.c | ||
ut.c |
Testing in U-Boot ================= U-Boot has a large amount of code. This file describes how this code is tested and what tests you should write when adding a new feature. Running tests ------------- To run most tests on sandbox, type this: make check in the U-Boot directory. Note that only the pytest suite is run using this command. Some tests take ages to run. To run just the quick ones, type this: make qcheck Sandbox ------- U-Boot can be built as a user-space application (e.g. for Linux). This allows test to be executed without needing target hardware. The 'sandbox' target provides this feature and it is widely used in tests. Pytest Suite ------------ Many tests are available using the pytest suite, in test/py. This can run either on sandbox or on real hardware. It relies on the U-Boot console to inject test commands and check the result. It is slower to run than C code, but provides the ability to unify lots of tests and summarise their results. You can run the tests on sandbox with: ./test/py/test.py --bd sandbox --build This will produce HTML output in build-sandbox/test-log.html See test/py/README.md for more information about the pytest suite. tbot ---- Tbot provides a way to execute tests on target hardware. It is intended for trying out both U-Boot and Linux (and potentially other software) on a number of boards automatically. It can be used to create a continuous test environment. See http://www.tbot.tools for more information. Ad-hoc tests ------------ There are several ad-hoc tests which run outside the pytest environment: test/fs - File system test (shell script) test/image - FIT and legacy image tests (shell script and Python) test/stdint - A test that stdint.h can be used in U-Boot (shell script) trace - Test for the tracing feature (shell script) TODO: Move these into pytest. When to write tests ------------------- If you add code to U-Boot without a test you are taking a risk. Even if you perform thorough manual testing at the time of submission, it may break when future changes are made to U-Boot. It may even break when applied to mainline, if other changes interact with it. A good mindset is that untested code probably doesn't work and should be deleted. You can assume that the Pytest suite will be run before patches are accepted to mainline, so this provides protection against future breakage. On the other hand there is quite a bit of code that is not covered with tests, or is covered sparingly. So here are some suggestions: - If you are adding a new uclass, add a sandbox driver and a test that uses it - If you are modifying code covered by an existing test, add a new test case to cover your changes - If the code you are modifying has not tests, consider writing one. Even a very basic test is useful, and may be picked up and enhanced by others. It is much easier to add onto a test - writing a new large test can seem daunting to most contributors. Future work ----------- Converting existing shell scripts into pytest tests.