X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=discover%2Fdevice-handler.c;h=0c0a9a78818bed53c0596390b927ebd571704e98;hp=3ef48ada77394e2252249b4495af81c8efe94291;hb=ff54a215f0ce4c25262b24038841b58274cc51d3;hpb=ff7293bba1fd4cdf54bb90bd1b7a38dd393fee69 diff --git a/discover/device-handler.c b/discover/device-handler.c index 3ef48ad..0c0a9a7 100644 --- a/discover/device-handler.c +++ b/discover/device-handler.c @@ -637,6 +637,21 @@ void device_handler_status_download(struct device_handler *handler, } } +static void device_handler_plugin_scan_device(struct device_handler *handler, + struct discover_device *dev) +{ + int rc; + + pb_debug("Scanning %s for plugin files\n", dev->device->id); + + rc = process_run_simple(handler, pb_system_apps.pb_plugin, + "scan", dev->mount_path, + NULL); + if (rc) + pb_log("Error from pb-plugin scan %s\n", + dev->mount_path); +} + void device_handler_status_download_remove(struct device_handler *handler, struct process_info *procinfo) { @@ -1103,6 +1118,9 @@ int device_handler_discover(struct device_handler *handler, device_handler_discover_context_commit(handler, ctx); process_boot_option_queue(handler); + + /* Check this device for pb-plugins */ + device_handler_plugin_scan_device(handler, dev); out: talloc_unlink(handler, ctx);