]> git.ozlabs.org Git - petitboot/blobdiff - ui/ncurses/nc-sysinfo.c
Display VERSION partition info on BMC machines
[petitboot] / ui / ncurses / nc-sysinfo.c
index 5ced871127b33a2ea01391a07a04e892a5af9e75..c01b35275ea6572bb0ad481673321f8712f124db 100644 (file)
@@ -65,6 +65,22 @@ static void sysinfo_screen_populate(struct sysinfo_screen *screen,
        line("%-12s %s", _("System type:"), sysinfo->type ?: "");
        line("%-12s %s", _("System id:"),   sysinfo->identifier ?: "");
 
+       if (sysinfo->n_current) {
+               line(NULL);
+               line("%s", _("Current platform versions:"));
+               for (i = 0; i < sysinfo->n_current; i++) {
+                       line("\t%s", sysinfo->platform_current[i] ?: "");
+               }
+       }
+
+       if (sysinfo->n_other) {
+               line(NULL);
+               line("%s", _("Alternate platform versions:"));
+               for (i = 0; i < sysinfo->n_other; i++) {
+                       line("\t%s", sysinfo->platform_other[i] ?: "");
+               }
+       }
+
        if (sysinfo->n_blockdevs) {
                line(NULL);
                line(_("Storage devices"));