From 4a94e53b23031e6c1a7a03d0a863681002e06ffd Mon Sep 17 00:00:00 2001 From: Stefan Roese Date: Tue, 26 Jun 2018 08:12:32 +0200 Subject: [PATCH] cmd: ubi: Add additional message upon UBI attach error When trying to attach an UBI MTD partition via "ubi part", it may happen that the MTD partition defined in U-Boot (via mtdparts) is not big enough than the one, where the UBI device has been created on. This may lead to errors, which are not really descriptive to debug and solve this issue, like: ubi0 error: vtbl_check: too large reserved_pebs 1982, good PEBs 1020 ubi0 error: vtbl_check: volume table check failed: record 0, error 9 or: ubi0 error: init_volumes: not enough PEBs, required 1738, available 1020 ubi0 error: ubi_wl_init: no enough physical eraseblocks (-718, need 1) ubi0 error: ubi_attach_mtd_dev: failed to attach mtd1, error -12 Lets add an additional message upon attach failure, to aid the U-Boot user to solve this problem. Signed-off-by: Stefan Roese Cc: Stefano Babic Cc: Heiko Schocher --- cmd/ubi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/ubi.c b/cmd/ubi.c index 9c3cabc262..0e935e34b8 100644 --- a/cmd/ubi.c +++ b/cmd/ubi.c @@ -512,6 +512,7 @@ int ubi_part(char *part_name, const char *vid_header_offset) vid_header_offset); if (err) { printf("UBI init error %d\n", err); + printf("Please check, if the correct MTD partition is used (size big enough?)\n"); ubi_dev.selected = 0; return err; } -- 2.39.2