mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 04:13:53 -06:00

Currently DTB files are mixed with ROMs under BIOS type. Separate them under a new type constant and turn defines into an enum while at it. Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-ID: <ae793d1f81e3577605759c43871722324a1ef2cb.1745402140.git.balaton@eik.bme.hu> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
33 lines
1,016 B
C
33 lines
1,016 B
C
#ifndef QEMU_DATADIR_H
|
|
#define QEMU_DATADIR_H
|
|
|
|
typedef enum {
|
|
QEMU_FILE_TYPE_BIOS,
|
|
QEMU_FILE_TYPE_DTB,
|
|
QEMU_FILE_TYPE_KEYMAP,
|
|
} QemuFileType;
|
|
|
|
/**
|
|
* qemu_find_file:
|
|
* @type: QEMU_FILE_TYPE_BIOS (for BIOS, VGA BIOS)
|
|
* QEMU_FILE_TYPE_DTB (for device tree blobs)
|
|
* or QEMU_FILE_TYPE_KEYMAP (for keymaps).
|
|
* @name: Relative or absolute file name
|
|
*
|
|
* If @name exists on disk as an absolute path, or a path relative
|
|
* to the current directory, then returns @name unchanged.
|
|
* Otherwise searches for @name file in the data directories, either
|
|
* configured at build time (DATADIR) or registered with the -L command
|
|
* line option.
|
|
*
|
|
* The caller must use g_free() to free the returned data when it is
|
|
* no longer required.
|
|
*
|
|
* Returns: a path that can access @name, or NULL if no matching file exists.
|
|
*/
|
|
char *qemu_find_file(QemuFileType type, const char *name);
|
|
void qemu_add_default_firmwarepath(void);
|
|
void qemu_add_data_dir(char *path);
|
|
void qemu_list_data_dirs(void);
|
|
|
|
#endif
|