Commit b6cf44395f82d990b9855d6244880c9b9cfd5044

Authored by Masahiro Yamada
Committed by Tom Rini
1 parent c66109cd3b

FIT: add some FIT configurations to Kconfig

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>

Showing 1 changed file with 22 additions and 0 deletions Side-by-side Diff

... ... @@ -93,6 +93,28 @@
93 93 help
94 94 If you want to build TPL as well as the normal image and SPL, say Y.
95 95  
  96 +config FIT
  97 + bool "Support Flattened Image Tree"
  98 + depends on !SPL_BUILD
  99 + help
  100 + This option allows to boot the new uImage structrure,
  101 + Flattened Image Tree. FIT is formally a FDT, which can include
  102 + images of various types (kernel, FDT blob, ramdisk, etc.)
  103 + in a single blob. To boot this new uImage structure,
  104 + pass the the address of the blob to the "bootm" command.
  105 +
  106 +config FIT_VERBOSE
  107 + bool "Display verbose messages on FIT boot"
  108 + depends on FIT
  109 +
  110 +config FIT_SIGNATURE
  111 + bool "Enabel signature verification of FIT uImages"
  112 + depends on FIT
  113 + help
  114 + This option enables signature verification of FIT uImages,
  115 + using a hash signed and verified using RSA.
  116 + See doc/uImage.FIT/signature.txt for more details.
  117 +
96 118 config SYS_EXTRA_OPTIONS
97 119 string "Extra Options (DEPRECATED)"
98 120 depends on !SPL_BUILD