summaryrefslogtreecommitdiffstats
path: root/lib/pb-protocol
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2014-04-30 10:17:20 +0800
committerJeremy Kerr <jk@ozlabs.org>2014-07-21 17:20:08 +0800
commite19c5fe83174de749843bb8486a0d12c25adcb82 (patch)
treec3602dff45153c6d021c0e3920574179cb63f52b /lib/pb-protocol
parent0adfe11dc0738321cdd529f30773899cc8f79855 (diff)
downloadtalos-petitboot-e19c5fe83174de749843bb8486a0d12c25adcb82.tar.gz
talos-petitboot-e19c5fe83174de749843bb8486a0d12c25adcb82.zip
config: Add boot_device member to config
We'd like to specify a way to only boot from a specific block device; this adds a field to the configuration to hold the value. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'lib/pb-protocol')
-rw-r--r--lib/pb-protocol/pb-protocol.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/lib/pb-protocol/pb-protocol.c b/lib/pb-protocol/pb-protocol.c
index cf27b8e..4a5c75a 100644
--- a/lib/pb-protocol/pb-protocol.c
+++ b/lib/pb-protocol/pb-protocol.c
@@ -472,6 +472,8 @@ int pb_protocol_serialise_config(const struct config *config,
pos += 4;
}
+ pos += pb_protocol_serialise_string(pos, config->boot_device);
+
assert(pos <= buf + buf_len);
(void)buf_len;
@@ -846,6 +848,7 @@ int pb_protocol_deserialise_config(struct config *config,
unsigned int len, i, tmp;
const char *pos;
int rc = -1;
+ char *str;
len = message->payload_len;
pos = message->payload;
@@ -878,10 +881,9 @@ int pb_protocol_deserialise_config(struct config *config,
config->network.n_dns_servers);
for (i = 0; i < config->network.n_dns_servers; i++) {
- char *tmp;
- if (read_string(config->network.dns_servers, &pos, &len, &tmp))
+ if (read_string(config->network.dns_servers, &pos, &len, &str))
goto out;
- config->network.dns_servers[i] = tmp;
+ config->network.dns_servers[i] = str;
}
if (read_u32(&pos, &len, &config->n_boot_priorities))
@@ -898,6 +900,11 @@ int pb_protocol_deserialise_config(struct config *config,
config->boot_priorities[i].type = tmp;
}
+ if (read_string(config, &pos, &len, &str))
+ goto out;
+
+ config->boot_device = str;
+
rc = 0;
out:
OpenPOWER on IntegriCloud