mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
ubi: Print skip_check in ubi_dump_vol_info()
It might be interesting, if "skip_check" is set or not, so lets print this flag in ubi_dump_vol_info() as well. hs: fix typo in commit message Signed-off-by: Stefan Roese <sr@denx.de> Cc: Quentin Schulz <quentin.schulz@bootlin.com> Cc: Boris Brezillon <boris.brezillon@bootlin.com> Cc: Heiko Schocher <hs@denx.de> Reviewed-by: Heiko Schocher <hs@denx.de>
This commit is contained in:
parent
386f20cade
commit
524acec47c
1 changed files with 1 additions and 0 deletions
|
@ -109,6 +109,7 @@ void ubi_dump_vol_info(const struct ubi_volume *vol)
|
|||
printf("\tlast_eb_bytes %d\n", vol->last_eb_bytes);
|
||||
printf("\tcorrupted %d\n", vol->corrupted);
|
||||
printf("\tupd_marker %d\n", vol->upd_marker);
|
||||
printf("\tskip_check %d\n", vol->skip_check);
|
||||
|
||||
if (vol->name_len <= UBI_VOL_NAME_MAX &&
|
||||
strnlen(vol->name, vol->name_len + 1) == vol->name_len) {
|
||||
|
|
Loading…
Add table
Reference in a new issue