Documentation/lib/payloads/fit.md: Consistently indent with tabs

Sphinx displays a tab as four spaces, which makes code indented with
eight spaces per level stand out. Format the example configuration file
in fit.md consistently with tabs to make it look consistent everywhere.

Change-Id: Ia1d4c44e68e5267bac1f0f558421c6a0c7a9329c
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-on: https://review.coreboot.org/28734
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
This commit is contained in:
Jonathan Neuschäfer 2018-09-25 14:00:13 +02:00 committed by Patrick Georgi
parent 200262c87d
commit 4586ccdfe6
1 changed files with 11 additions and 11 deletions

View File

@ -122,17 +122,17 @@ the following example configuration:
}; };
}; };
ramdisk-1 { ramdisk-1 {
description = "Compressed Initramfs"; description = "Compressed Initramfs";
data = /incbin/("initramfs.cpio.xz"); data = /incbin/("initramfs.cpio.xz");
type = "ramdisk"; type = "ramdisk";
arch = "arm64"; arch = "arm64";
os = "linux"; os = "linux";
compression = "none"; compression = "none";
load = <00000000>; load = <00000000>;
entry = <00000000>; entry = <00000000>;
hash-1 { hash-1 {
algo = "sha1"; algo = "sha1";
}; };
}; };
}; };