Displaying 1 result from an estimated 1 matches for "draw_progress".
2010 Apr 23
1
Path simple menu integrated progress indicator
...e2, "initrd="))) {
+ do {
+ char* initrdarg = refdup_word(&arg);
+ p = strchr(initrdarg, ',');
+ if (p)
+ *p = '\0';
+
+ if (initramfs_load_archive_w_callback(initramfs, initrdarg, draw_progress)) {
+ printf("failed!\n");
+ return 1;
+ }
+
+ if (p)
+ *p++ = ',';
+ } while ((arg = p));
+ }
+
+ console_cleanup();
+ console_prepare();
+
+ syslinux_boot_...