summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/debug_menu.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 8716b302c4..820e7aaa07 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -1428,6 +1428,15 @@ static int disk_callback(int btn, struct gui_synclist *lists)
1428 '0' + (i & 7)); 1428 '0' + (i & 7));
1429 } 1429 }
1430#endif /* HAVE_ATA_DMA */ 1430#endif /* HAVE_ATA_DMA */
1431 i = identity_info[0] & (1 << 15);
1432 simplelist_addline(
1433 "ATA device: %s", i ? "yes" : "no");
1434 i = identity_info[0] & (1 << 6);
1435 simplelist_addline(
1436 "Fixed device: %s", i ? "yes" : "no");
1437 i = identity_info[0] & (1 << 7);
1438 simplelist_addline(
1439 "Removeable media: %s", i ? "yes" : "no");
1431 return btn; 1440 return btn;
1432} 1441}
1433 1442