summaryrefslogtreecommitdiffstats
path: root/hw/fw_cfg.c
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2013-01-16 14:50:24 +0100
committerBlue Swirl <blauwirbel@gmail.com>2013-01-19 10:22:41 +0000
commit44687f75434ea938e9d29fdc3696ff4bdc0978fa (patch)
treea35042472ec81aa51898d8863c3f7ec4fe5d6c01 /hw/fw_cfg.c
parent4cad3867b6df2c0826ae508a9fe15dd0b9d8936a (diff)
downloadhqemu-44687f75434ea938e9d29fdc3696ff4bdc0978fa.zip
hqemu-44687f75434ea938e9d29fdc3696ff4bdc0978fa.tar.gz
fw_cfg: New fw_cfg_add_string()
Signed-off-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/fw_cfg.c')
-rw-r--r--hw/fw_cfg.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/hw/fw_cfg.c b/hw/fw_cfg.c
index 0361f68..3d6dd5f 100644
--- a/hw/fw_cfg.c
+++ b/hw/fw_cfg.c
@@ -385,6 +385,13 @@ void fw_cfg_add_bytes(FWCfgState *s, uint16_t key, uint8_t *data, uint32_t len)
s->entries[arch][key].len = len;
}
+void fw_cfg_add_string(FWCfgState *s, uint16_t key, const char *value)
+{
+ size_t sz = strlen(value) + 1;
+
+ return fw_cfg_add_bytes(s, key, (uint8_t *)g_memdup(value, sz), sz);
+}
+
void fw_cfg_add_i16(FWCfgState *s, uint16_t key, uint16_t value)
{
uint16_t *copy;
OpenPOWER on IntegriCloud