aboutsummaryrefslogtreecommitdiffstats
path: root/whitelist.h
blob: 090920b0ad04d9aa7de11395f9528dd5ffc22ddc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* whitelist.h
 * whitelist of machines that are known to work somehow
 * and all the workarounds
 */

struct machine_entry
{
	const char *sys_vendor;
	const char *sys_product;
	const char *sys_version;
	const char *bios_version;
	unsigned int flags;
};

extern char *whitelist_version;
extern struct machine_entry whitelist[];