2009-09-10 08:58:34 +00:00
|
|
|
#ifndef QEMU_CONFIG_H
|
|
|
|
#define QEMU_CONFIG_H
|
|
|
|
|
2012-10-23 23:29:38 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include "qemu-option.h"
|
2012-03-28 17:16:37 +00:00
|
|
|
#include "error.h"
|
|
|
|
|
2010-04-29 12:14:43 +00:00
|
|
|
extern QemuOptsList qemu_fsdev_opts;
|
virtio-9p: Create a syntactic shortcut for the file-system pass-thru
Currently the commandline to create a virtual-filesystem pass-through between
the guest and the host is as follows:
#qemu -fsdev fstype,id=ID,path=path/to/share \
-device virtio-9p-pci,fsdev=ID,mount_tag=tag \
This patch provides a syntactic short-cut to achieve the same as follows:
#qemu -virtfs fstype,path=path/to/share,mount_tag=tag
This will be internally expanded as:
#qemu -fsdev fstype,id=tag,path=path/to/share, \
-device virtio-9p-pci,fsdev=tag,mount_tag=tag \
Signed-off-by: Gautham R Shenoy <ego@in.ibm.com>
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
2010-04-29 12:15:03 +00:00
|
|
|
extern QemuOptsList qemu_virtfs_opts;
|
2010-03-11 14:13:27 +00:00
|
|
|
extern QemuOptsList qemu_spice_opts;
|
2012-08-14 21:44:08 +00:00
|
|
|
extern QemuOptsList qemu_sandbox_opts;
|
2009-07-31 10:25:36 +00:00
|
|
|
|
2010-02-10 19:09:14 +00:00
|
|
|
QemuOptsList *qemu_find_opts(const char *group);
|
2012-03-28 17:16:37 +00:00
|
|
|
QemuOptsList *qemu_find_opts_err(const char *group, Error **errp);
|
2010-08-20 11:52:00 +00:00
|
|
|
void qemu_add_opts(QemuOptsList *list);
|
2009-07-31 10:25:36 +00:00
|
|
|
int qemu_set_option(const char *str);
|
2009-12-08 12:11:34 +00:00
|
|
|
int qemu_global_option(const char *str);
|
|
|
|
void qemu_add_globals(void);
|
2009-09-10 08:58:34 +00:00
|
|
|
|
2009-10-14 08:39:26 +00:00
|
|
|
void qemu_config_write(FILE *fp);
|
2010-03-05 17:21:56 +00:00
|
|
|
int qemu_config_parse(FILE *fp, QemuOptsList **lists, const char *fname);
|
2009-10-14 08:39:26 +00:00
|
|
|
|
2010-03-05 16:25:55 +00:00
|
|
|
int qemu_read_config_file(const char *filename);
|
|
|
|
|
2012-06-16 07:29:10 +00:00
|
|
|
/* Read default QEMU config files
|
2012-05-02 16:07:25 +00:00
|
|
|
*/
|
2012-05-02 16:07:29 +00:00
|
|
|
int qemu_read_default_config_files(bool userconfig);
|
2012-05-02 16:07:25 +00:00
|
|
|
|
2009-09-10 08:58:34 +00:00
|
|
|
#endif /* QEMU_CONFIG_H */
|