cfi_flash: flinfo: allow user interrupt in flash print info fn
flashes getting larger, users more impatient. Signed-off-by: Kim Phillips <kim.phillips@freescale.com> Signed-off-by: Stefan Roese <sr@denx.de>
This commit is contained in:
parent
962ad59e25
commit
2e97394a6d
|
@ -1159,6 +1159,8 @@ void flash_print_info (flash_info_t * info)
|
|||
|
||||
puts ("\n Sector Start Addresses:");
|
||||
for (i = 0; i < info->sector_count; ++i) {
|
||||
if (ctrlc())
|
||||
return;
|
||||
if ((i % 5) == 0)
|
||||
printf ("\n");
|
||||
#ifdef CONFIG_SYS_FLASH_EMPTY_INFO
|
||||
|
|
Loading…
Reference in New Issue