summaryrefslogtreecommitdiffstats
path: root/discover/boot.c
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2013-04-16 16:58:18 +0800
committerJeremy Kerr <jk@ozlabs.org>2013-04-29 14:41:04 +1000
commit5be946cda7b8e2271ade6188ca3f5dc068826619 (patch)
treea62a64792bb61aa57c5d8dac36c7df9756d01ef8 /discover/boot.c
parent4e8b779626da98e2896efbb2df99b64f76e878f6 (diff)
downloadtalos-petitboot-5be946cda7b8e2271ade6188ca3f5dc068826619.tar.gz
talos-petitboot-5be946cda7b8e2271ade6188ca3f5dc068826619.zip
discover: Change parsers to emit resources rather than filenames
This change switches the parsers over to populate the resources in discover_boot_option, rather than the string parameters in boot_option. To do this, we need a few things: * Add struct resources to discover_boot_option for the boot_image, initrd and icon data. * Have the parsers populate the resources, rather than the strings. Currently, parsers can all use the devpath resource type. * Add a resolve_resource callback to parsers; this is how the device handler will attempt to resolve resources. * Change load_file to load_url, as we should be only accessing (resolved) resources by URLs. This then allows us to remove the mount map, and associated lookup code, as well as the UUID and label links to devices. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'discover/boot.c')
-rw-r--r--discover/boot.c28
1 files changed, 16 insertions, 12 deletions
diff --git a/discover/boot.c b/discover/boot.c
index e67ed00..804425c 100644
--- a/discover/boot.c
+++ b/discover/boot.c
@@ -5,9 +5,12 @@
#include <pb-protocol/pb-protocol.h>
#include <system/system.h>
#include <talloc/talloc.h>
+#include <url/url.h>
+#include "device-handler.h"
#include "boot.h"
#include "paths.h"
+#include "resource.h"
/**
* kexec_load - kexec load helper.
@@ -94,13 +97,14 @@ static int kexec_reboot(int dry_run)
return result;
}
-int boot(void *ctx, struct boot_option *opt, struct boot_command *cmd,
+int boot(void *ctx, struct discover_boot_option *opt, struct boot_command *cmd,
int dry_run)
{
char *local_image, *local_initrd;
unsigned int clean_image = 0;
unsigned int clean_initrd = 0;
- char *image, *initrd, *args;
+ struct pb_url *image, *initrd;
+ char *args;
int result;
local_initrd = NULL;
@@ -109,34 +113,34 @@ int boot(void *ctx, struct boot_option *opt, struct boot_command *cmd,
args = NULL;
if (cmd->boot_image_file) {
- image = talloc_strdup(ctx, cmd->boot_image_file);
- } else if (opt && opt->boot_image_file) {
- image = talloc_strdup(ctx, opt->boot_image_file);
+ image = pb_url_parse(opt, cmd->boot_image_file);
+ } else if (opt && opt->boot_image) {
+ image = opt->boot_image->url;
} else {
pb_log("%s: no image specified", __func__);
return -1;
}
if (cmd->initrd_file) {
- initrd = talloc_strdup(ctx, cmd->initrd_file);
- } else if (opt && opt->initrd_file) {
- initrd = talloc_strdup(ctx, opt->initrd_file);
+ initrd = pb_url_parse(opt, cmd->initrd_file);
+ } else if (opt && opt->initrd) {
+ initrd = opt->initrd->url;
}
if (cmd->boot_args) {
args = talloc_strdup(ctx, cmd->boot_args);
- } else if (opt && opt->boot_args) {
- args = talloc_strdup(ctx, opt->boot_args);
+ } else if (opt && opt->option->boot_args) {
+ args = talloc_strdup(ctx, opt->option->boot_args);
}
result = -1;
- local_image = load_file(NULL, image, &clean_image);
+ local_image = load_url(NULL, image, &clean_image);
if (!local_image)
goto no_load;
if (initrd) {
- local_initrd = load_file(NULL, initrd, &clean_initrd);
+ local_initrd = load_url(NULL, initrd, &clean_initrd);
if (!local_initrd)
goto no_load;
}
OpenPOWER on IntegriCloud