Changeset 2881 in MondoRescue
- Timestamp:
- Oct 6, 2011, 1:34:27 AM (13 years ago)
- Location:
- branches/2.2.9/mondo/src/common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.9/mondo/src/common/libmondo-archive.c
r2868 r2881 543 543 mvaddstr_and_log_it(g_currentY, 0, 544 544 "Calling MINDI to create boot+data disks"); 545 open_evalcall_form("Calling MINDI to create boot+data disks"); 545 546 mr_asprintf(&tmp, "%s/filelist.full", bkpinfo->tmpdir); 546 547 if (!does_file_exist(tmp)) { … … 609 610 } 610 611 612 update_evalcall_form(2); 611 613 if (!bkpinfo->nonbootable_backup 612 614 && (bkpinfo->boot_loader == '\0' … … 857 859 paranoid_free(command); 858 860 log_msg(1, "lines_in_filelist = %ld", lines_in_filelist); 861 update_evalcall_form(3); 859 862 860 863 /* "mindi --custom 2=%s 3=%s/images 4=\"%s\" 5=\"%s\" \ … … 901 904 // popup_and_OK("Pausing"); 902 905 903 res = run_program_and_log_to_screen(command, "Generating boot+data disks"); 906 res = run_program_and_log_output(command, "Generating boot+data disks"); 907 update_evalcall_form(99); 904 908 paranoid_free(command); 905 909 … … 953 957 mr_free(tmp); 954 958 } 959 close_evalcall_form(); 955 960 return (res); 956 961 } -
branches/2.2.9/mondo/src/common/newt-specific.c
r2879 r2881 638 638 newtCenteredWindow(40, 7, title); 639 639 g_isoform_main = newtForm(NULL, NULL, 0); 640 g_isoform_timeline = newtLabel(1, 5, " This is the timeline");641 g_isoform_pcline = newtLabel(1, 6, " This is the pcline");640 g_isoform_timeline = newtLabel(1, 5, " "); 641 g_isoform_pcline = newtLabel(1, 6, " "); 642 642 newtFormAddComponents(g_isoform_main, g_isoform_timeline, 643 643 g_isoform_pcline, g_isoform_header,
Note:
See TracChangeset
for help on using the changeset viewer.