From b8e53cb4b96eb17dc7fa0ffc505dfebae37e6cbf Mon Sep 17 00:00:00 2001 From: Neelesh Gupta Date: Mon, 28 Oct 2013 12:45:21 +0530 Subject: discover: Change parsers to explicitly request configuration files Add a new function parser_request_url() to read the data from configuration files present remotely. We deprecate iterate_parser_files() and download_config() functions along with the 'filenames' and 'method' members of the 'parser' structure so that individual parsers would now require to request the configuration files data from the parser code and doesn't necessarily export the list of configuration files. Add the support to handle incoming DHCP event, done by passing all the relevant environment variables of the udhcpc to the discover code. Also, update the pxe parser code to populate the list of configuration file names as per PXELINUX convention of fallback names using mac and ip addresses of the booting machine. Signed-off-by: Neelesh Gupta Signed-off-by: Jeremy Kerr --- discover/udev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'discover/udev.c') diff --git a/discover/udev.c b/discover/udev.c index 0c656f3..48ab745 100644 --- a/discover/udev.c +++ b/discover/udev.c @@ -116,7 +116,7 @@ static int udev_handle_dev_add(struct pb_udev *udev, struct udev_device *dev) udev_setup_device_params(dev, ddev); - device_handler_discover(udev->handler, ddev, CONF_METHOD_LOCAL_FILE); + device_handler_discover(udev->handler, ddev); return 0; } -- cgit v1.2.1