talloc_free(device);
}
-static void boot_status(void *arg, struct boot_status *status)
+void device_handler_boot_status(void *arg, struct boot_status *status)
{
struct device_handler *handler = arg;
platform_pre_boot();
handler->pending_boot = boot(handler, handler->default_boot_option,
- NULL, handler->dry_run, boot_status, handler);
+ NULL, handler->dry_run, device_handler_boot_status,
+ handler);
handler->pending_boot_is_default = true;
return 0;
}
status->message = talloc_asprintf(status, _("Processing %s device %s"),
device_type_display_name(dev->device->type),
dev->device->id);
- boot_status(handler, status);
+ device_handler_boot_status(handler, status);
process_boot_option_queue(handler);
*/
status->message = talloc_asprintf(status,_("Processing %s complete"),
dev->device->id);
- boot_status(handler, status);
+ device_handler_boot_status(handler, status);
talloc_free(status);
talloc_free(ctx);
*/
status->message = talloc_asprintf(status, _("Processing dhcp event on %s"),
dev->device->id);
- boot_status(handler, status);
+ device_handler_boot_status(handler, status);
/* create our context */
ctx = device_handler_discover_context_create(handler, dev);
*/
status->message = talloc_asprintf(status,_("Processing %s complete"),
dev->device->id);
- boot_status(handler, status);
+ device_handler_boot_status(handler, status);
talloc_free(status);
talloc_free(ctx);
status = talloc_zero(handler, struct boot_status);
status->type = BOOT_STATUS_INFO;
status->message = talloc_asprintf(status, _("Processing user config"));
- boot_status(handler, status);
+ device_handler_boot_status(handler, status);
/* create our context */
ctx = device_handler_discover_context_create(handler, dev);
status->message = talloc_asprintf(status,
_("Processing user config complete"));
- boot_status(handler, status);
+ device_handler_boot_status(handler, status);
talloc_free(status);
talloc_free(ctx);
platform_pre_boot();
handler->pending_boot = boot(handler, opt, cmd, handler->dry_run,
- boot_status, handler);
+ device_handler_boot_status, handler);
handler->pending_boot_is_default = false;
}
status->message = talloc_asprintf(status, _("Config file %s parsed"),
pb_url->file);
msg:
- boot_status(handler, status);
+ device_handler_boot_status(handler, status);
talloc_free(status);
}