python-cryptography: bump to version 1.7.2
[buildroot-gz.git] / package / uboot-tools / Config.in
blobf55614bac5ca8fe5b0513ef45614abfd48551e0e
1 config BR2_PACKAGE_UBOOT_TOOLS
2         bool "u-boot tools"
3         help
4           Companion tools for Das U-Boot bootloader.
6           http://www.denx.de/wiki/U-Boot/WebHome
8 if BR2_PACKAGE_UBOOT_TOOLS
10 config BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
11         bool "Flattened Image Tree (FIT) support"
12         depends on !BR2_STATIC_LIBS
13         select BR2_PACKAGE_DTC
14         select BR2_PACKAGE_DTC_PROGRAMS
15         help
16           Enables support for Flattened Image Tree (FIT).
18           This option allows to boot the new uImage structure,
19           Flattened Image Tree. FIT is formally a FDT, which can include
20           images of various types (kernel, FDT blob, ramdisk, etc.)
21           in a single blob. To boot this new uImage structure,
22           pass the address of the blob to the "bootm" command.
24 comment "u-boot tools FIT support needs a toolchain w/ dynamic library"
25         depends on BR2_STATIC_LIBS
27 if BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
29 config BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
30         bool "FIT signature verification support"
31         select BR2_PACKAGE_OPENSSL
32         help
33           Enables support for FIT Signature Verification.
35           Flat Image Trees (FIT) supports hashing of images so that
36           these hashes can be checked on loading. This protects
37           against corruption of the image. However it does not prevent
38           the substitution of one image for another.
40           The signature feature allows the hash to be signed with a
41           private key such that it can be verified using a public key
42           later. Provided that the private key is kept secret and the
43           public key is stored in a non-volatile place, any image can
44           be verified in this way.
46           Enabling this option pulls in a dependency on libssl and
47           libcrypto, and possibly GPL/OpenSSL licensing
48           incompatibility issues.
50 endif
52 config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
53         bool "mkimage"
54         help
55           Install the mkimage tool on the target system
57           The mkimage tool from Das U-Boot bootloader, which allows
58           generation of U-Boot images in various formats.
60 config BR2_PACKAGE_UBOOT_TOOLS_MKENVIMAGE
61         bool "mkenvimage"
62         help
63           Install the mkenvimage tool on the target system
65           The mkenvimage tool from Das U-Boot bootloader, which allows
66           generation of a valid binary environment image from a text file
67           describing the key=value pairs of the environment.
69 config BR2_PACKAGE_UBOOT_TOOLS_FWPRINTENV
70         bool "fw_printenv"
71         default y
72         help
73           Install the fw_printenv / fw_setenv tools on the target system
75           The fw_printenv and fw_setenv tools from Das U-Boot
76           bootloader, which allows access to the U-Boot environment
77           from Linux.
79 config BR2_PACKAGE_UBOOT_TOOLS_DUMPIMAGE
80         bool "dumpimage"
81         help
82           Install the dumpimage tool on the target system
84           The dumpimage tool from Das U-Boot bootloader, which allows
85           extraction of data from U-Boot images.
87 endif