~ubuntu-branches/ubuntu/vivid/qemu-linaro/vivid

« back to all changes in this revision

Viewing changes to qemu-config.h

  • Committer: Ricardo Salveti de Araujo
  • Date: 2012-09-20 18:39:31 UTC
  • mfrom: (12922.1.2 qemu-linaro)
  • Revision ID: ricardo.salveti@linaro.org-20120920183931-sp3cg6kpdl8dmwo9
* New upstream release.
  - support emulated systems with more than 2G of memory. (LP: #1030588)
* Drop powerpc-missing-include.patch - merged upstream.
* Update debian/control:
  - drop perl build dependency.
  - add libfdt-dev build dependency.
* Update debian/qemu-keymaps.install file.
* Update debian/rules:
  - update QEMU_CPU for ARM architecture: armv4l -> armv7l.
  - update conf_audio_drv: default to PulseAudio since PA is the default on
    Ubuntu.
  - enable KVM on ARM architecture.
  - enable flat device tree support (--enable-fdt). (LP: #1030594)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#ifndef QEMU_CONFIG_H
2
2
#define QEMU_CONFIG_H
3
3
 
 
4
#include "error.h"
 
5
 
4
6
extern QemuOptsList qemu_fsdev_opts;
5
7
extern QemuOptsList qemu_virtfs_opts;
6
8
extern QemuOptsList qemu_spice_opts;
7
9
 
8
10
QemuOptsList *qemu_find_opts(const char *group);
 
11
QemuOptsList *qemu_find_opts_err(const char *group, Error **errp);
9
12
void qemu_add_opts(QemuOptsList *list);
10
13
int qemu_set_option(const char *str);
11
14
int qemu_global_option(const char *str);
16
19
 
17
20
int qemu_read_config_file(const char *filename);
18
21
 
 
22
/* Read default QEMU config files
 
23
 */
 
24
int qemu_read_default_config_files(bool userconfig);
 
25
 
19
26
#endif /* QEMU_CONFIG_H */