e2c621c1966a6298c89c583f569ea308e541d38e
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / uboot-tools / Config.in
1 config BR2_PACKAGE_UBOOT_TOOLS
2         bool "u-boot tools"
3         help
4           Companion tools for Das U-Boot bootloader.
5
6           http://www.denx.de/wiki/U-Boot/WebHome
7
8 if BR2_PACKAGE_UBOOT_TOOLS
9
10 config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
11         bool "mkimage"
12         help
13           The mkimage tool from Das U-Boot bootloader, which allows
14           generation of U-Boot images in various formats.
15
16 if BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
17
18 config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
19         bool "FIT signature verification support"
20         select BR2_PACKAGE_OPENSSL
21         help
22           Enables support for FIT Signature Verification.
23
24           Flat Image Trees (FIT) supports hashing of images so that
25           these hashes can be checked on loading. This protects
26           against corruption of the image. However it does not prevent
27           the substitution of one image for another.
28
29           The signature feature allows the hash to be signed with a
30           private key such that it can be verified using a public key
31           later. Provided that the private key is kept secret and the
32           public key is stored in a non-volatile place, any image can
33           be verified in this way.
34
35           Enabling this option pulls in a dependency on libssl and
36           libcrypto, and possibly GPL/OpenSSL licensing
37           incompatibility issues.
38
39 endif
40
41 config BR2_PACKAGE_UBOOT_TOOLS_MKENVIMAGE
42         bool "mkenvimage"
43         help
44           The mkenvimage tool from Das U-Boot bootloader, which allows
45           generation of a valid binary environment image from a text file
46           describing the key=value pairs of the environment.
47
48 config BR2_PACKAGE_UBOOT_TOOLS_FWPRINTENV
49         bool "fw_printenv"
50         default y
51         help
52           The fw_printenv / fw_setenv tools from Das U-Boot
53           bootloader, which allows access to the U-Boot environment
54           from Linux.
55
56 endif