mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
move code to read default config files to a separate function (v2)
Function added to arch_init.c because it depends on arch-specific settings. Changes v1 -> v2: - Move qemu_read_default_config_file() prototype to qemu-config.h Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
04120e3bb0
commit
b5a8fe5e8a
3 changed files with 24 additions and 8 deletions
18
arch_init.c
18
arch_init.c
|
@ -112,6 +112,24 @@ const uint32_t arch_type = QEMU_ARCH;
|
|||
#define ALL_EQ(v1, v2) ((v1) == (v2))
|
||||
#endif
|
||||
|
||||
|
||||
int qemu_read_default_config_files(void)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = qemu_read_config_file(CONFIG_QEMU_CONFDIR "/qemu.conf");
|
||||
if (ret < 0 && ret != -ENOENT) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
ret = qemu_read_config_file(arch_config_name);
|
||||
if (ret < 0 && ret != -ENOENT) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int is_dup_page(uint8_t *page)
|
||||
{
|
||||
VECTYPE *p = (VECTYPE *)page;
|
||||
|
|
|
@ -16,4 +16,8 @@ int qemu_config_parse(FILE *fp, QemuOptsList **lists, const char *fname);
|
|||
|
||||
int qemu_read_config_file(const char *filename);
|
||||
|
||||
/* Read default Qemu config files
|
||||
*/
|
||||
int qemu_read_default_config_files(void);
|
||||
|
||||
#endif /* QEMU_CONFIG_H */
|
||||
|
|
10
vl.c
10
vl.c
|
@ -2358,14 +2358,8 @@ int main(int argc, char **argv, char **envp)
|
|||
|
||||
if (defconfig) {
|
||||
int ret;
|
||||
|
||||
ret = qemu_read_config_file(CONFIG_QEMU_CONFDIR "/qemu.conf");
|
||||
if (ret < 0 && ret != -ENOENT) {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
ret = qemu_read_config_file(arch_config_name);
|
||||
if (ret < 0 && ret != -ENOENT) {
|
||||
ret = qemu_read_default_config_files();
|
||||
if (ret < 0) {
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue