blob: 427e71788c3699be9023b1cf54b92d87d75e2bd3 [file] [log] [blame]
Jon Medhurst96b56152014-10-30 18:01:15 +00001/**
Jon Medhurstb1d07442015-05-08 12:04:18 +01002 * Copyright (C) ARM Limited 2014-2015. All rights reserved.
Jon Medhurst96b56152014-10-30 18:01:15 +00003 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#ifndef SETUP_H
10#define SETUP_H
11
12// From include/generated/uapi/linux/version.h
13#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
14
15bool getLinuxVersion(int version[3]);
Jon Medhurstb1d07442015-05-08 12:04:18 +010016void update(const char *const gatorPath);
Jon Medhurst96b56152014-10-30 18:01:15 +000017
18#endif // SETUP_H