mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06: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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue