mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-23 05:08:24 +00:00

Comment is not kernel-doc format that's why don't label it like that and also fix indentation to have proper multiline comment. Signed-off-by: Michal Simek <michal.simek@amd.com> Acked-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
11 lines
258 B
Text
11 lines
258 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Devicetree file with the public key EFI Signature List(ESL)
|
|
* node. This file is used to generate the dtsi file to be
|
|
* included into the DTB.
|
|
*/
|
|
/ {
|
|
signature {
|
|
capsule-key = /incbin/("ESL_BIN_FILE");
|
|
};
|
|
};
|