diff options
Diffstat (limited to 'qemu/roms/u-boot/include/sandboxblockdev.h')
-rw-r--r-- | qemu/roms/u-boot/include/sandboxblockdev.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/qemu/roms/u-boot/include/sandboxblockdev.h b/qemu/roms/u-boot/include/sandboxblockdev.h new file mode 100644 index 000000000..627787aa3 --- /dev/null +++ b/qemu/roms/u-boot/include/sandboxblockdev.h @@ -0,0 +1,18 @@ +/* + * Copyright (c) 2013, Henrik Nordstrom <henrik@henriknordstrom.net> + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#ifndef __SANDBOX_BLOCK_DEV__ +#define __SANDBOX_BLOCK_DEV__ + +struct host_block_dev { + block_dev_desc_t blk_dev; + char *filename; + int fd; +}; + +int host_dev_bind(int dev, char *filename); + +#endif |