X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=discover%2Fdevice-handler.c;h=5df070073b4d298c8a49a5488010434b73ff4f32;hp=9868e5112c419d2c8faad2ec34e9fdd25919830f;hb=f155a58a64c660e46e74123293482561b816a39a;hpb=77108275fe6c5cefa1b7d330a3acf48c12275230 diff --git a/discover/device-handler.c b/discover/device-handler.c index 9868e51..5df0700 100644 --- a/discover/device-handler.c +++ b/discover/device-handler.c @@ -897,7 +897,7 @@ out: * TRANSLATORS: the format specifier in this string is a Linux * device identifier, like 'sda1' */ - status->message = talloc_asprintf(status,_("Processing %s complete\n"), + status->message = talloc_asprintf(status,_("Processing %s complete"), dev->device->id); boot_status(handler, status); @@ -936,7 +936,7 @@ int device_handler_dhcp(struct device_handler *handler, * TRANSLATORS: this format specifier will be the name of a network * device, like 'eth0'. */ - status->message = talloc_asprintf(status,_("Processing %s complete\n"), + status->message = talloc_asprintf(status,_("Processing %s complete"), dev->device->id); boot_status(handler, status); @@ -1125,9 +1125,8 @@ static char *device_from_addr(void *ctx, struct pb_url *url) return dev; } - void device_handler_process_url(struct device_handler *handler, - const char *url) + const char *url, const char *mac, const char *ip) { struct discover_context *ctx; struct discover_device *dev; @@ -1153,11 +1152,25 @@ void device_handler_process_url(struct device_handler *handler, event->type = EVENT_TYPE_USER; event->action = EVENT_ACTION_CONF; - event->params = talloc_array(event, struct param, 1); - param = &event->params[0]; - param->name = talloc_strdup(event, "pxeconffile"); - param->value = talloc_strdup(event, url); - event->n_params = 1; + if (url[strlen(url) - 1] == '/') { + event->params = talloc_array(event, struct param, 3); + param = &event->params[0]; + param->name = talloc_strdup(event, "pxepathprefix"); + param->value = talloc_strdup(event, url); + param = &event->params[1]; + param->name = talloc_strdup(event, "mac"); + param->value = talloc_strdup(event, mac); + param = &event->params[2]; + param->name = talloc_strdup(event, "ip"); + param->value = talloc_strdup(event, ip); + event->n_params = 3; + } else { + event->params = talloc_array(event, struct param, 1); + param = &event->params[0]; + param->name = talloc_strdup(event, "pxeconffile"); + param->value = talloc_strdup(event, url); + event->n_params = 1; + } pb_url = pb_url_parse(event, event->params->value); if (!pb_url || !pb_url->host) { @@ -1472,7 +1485,6 @@ mount_ro: void device_release_write(struct discover_device *dev, bool release) { const char *fstype, *device_path; - int rc = 0; if (!release) return; @@ -1495,10 +1507,9 @@ void device_release_write(struct discover_device *dev, bool release) device_path = get_device_path(dev); } - mount(device_path, dev->mount_path, fstype, + if (mount(device_path, dev->mount_path, fstype, MS_RDONLY | MS_SILENT, - fs_parameters(dev, MS_RDONLY)); - if (rc) + fs_parameters(dev, MS_RDONLY))) pb_log("Failed to remount %s read-only: %s\n", device_path, strerror(errno)); else