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