mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-30 05:21:55 -06:00
fw_cfg: New fw_cfg_add_string()
Signed-off-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
4cad3867b6
commit
44687f7543
2 changed files with 8 additions and 0 deletions
|
@ -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;
|
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)
|
void fw_cfg_add_i16(FWCfgState *s, uint16_t key, uint16_t value)
|
||||||
{
|
{
|
||||||
uint16_t *copy;
|
uint16_t *copy;
|
||||||
|
|
|
@ -55,6 +55,7 @@ typedef void (*FWCfgCallback)(void *opaque, uint8_t *data);
|
||||||
|
|
||||||
typedef struct FWCfgState FWCfgState;
|
typedef struct FWCfgState FWCfgState;
|
||||||
void fw_cfg_add_bytes(FWCfgState *s, uint16_t key, uint8_t *data, uint32_t len);
|
void fw_cfg_add_bytes(FWCfgState *s, uint16_t key, uint8_t *data, uint32_t len);
|
||||||
|
void fw_cfg_add_string(FWCfgState *s, uint16_t key, const char *value);
|
||||||
void fw_cfg_add_i16(FWCfgState *s, uint16_t key, uint16_t value);
|
void fw_cfg_add_i16(FWCfgState *s, uint16_t key, uint16_t value);
|
||||||
void fw_cfg_add_i32(FWCfgState *s, uint16_t key, uint32_t value);
|
void fw_cfg_add_i32(FWCfgState *s, uint16_t key, uint32_t value);
|
||||||
void fw_cfg_add_i64(FWCfgState *s, uint16_t key, uint64_t value);
|
void fw_cfg_add_i64(FWCfgState *s, uint16_t key, uint64_t value);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue