]> Git Repo - qemu.git/blob - tests/boot-sector.h
Merge remote-tracking branch 'remotes/jasowang/tags/net-pull-request' into staging
[qemu.git] / tests / boot-sector.h
1 /*
2  * QEMU boot sector testing helpers.
3  *
4  * Copyright (c) 2016 Red Hat Inc.
5  *
6  * Authors:
7  *  Michael S. Tsirkin <[email protected]>
8  *  Victor Kaplansky <[email protected]>    
9  *
10  * This work is licensed under the terms of the GNU GPL, version 2 or later.
11  * See the COPYING file in the top-level directory.
12  */
13
14 #ifndef TEST_BOOT_SECTOR
15 #define TEST_BOOT_SECTOR
16
17 /* Create boot disk file.  */
18 int boot_sector_init(const char *fname);
19
20 /* Loop until signature in memory is OK.  */
21 void boot_sector_test(void);
22
23 /* unlink boot disk file.  */
24 void boot_sector_cleanup(const char *fname);
25
26 #endif /* TEST_BOOT_SECTOR */
This page took 0.026264 seconds and 4 git commands to generate.