mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2026-03-06 20:29:28 -05:00
nvram: fix displayed info about NVRAM size
Use actual partition size and content offset to calculate it. Signed-off-by: Rafał Miłecki <zajec5@gmail.com> SVN-Revision: 46260
This commit is contained in:
@@ -123,8 +123,8 @@ static int do_info(nvram_handle_t *nvram)
|
||||
printf("NCDL values: 0x%08X\n\n", hdr->config_ncdl);
|
||||
|
||||
printf("%i bytes used / %i bytes available (%.2f%%)\n",
|
||||
hdr->len, NVRAM_SPACE - hdr->len,
|
||||
(100.00 / (double)NVRAM_SPACE) * (double)hdr->len);
|
||||
hdr->len, nvram->length - nvram->offset - hdr->len,
|
||||
(100.00 / (double)(nvram->length - nvram->offset)) * (double)hdr->len);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user