-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.h.cmake
40 lines (34 loc) · 1010 Bytes
/
config.h.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef CONFIG_H
#define CONFIG_H
#define KCM_GRUB2_VERSION "@KCM_GRUB2_VERSION@"
#define HAVE_IMAGEMAGICK @HAVE_IMAGEMAGICK@
#define HAVE_HD @HAVE_HD@
#define HAVE_QAPT @HAVE_QAPT@
#define HAVE_QPACKAGEKIT @HAVE_QPACKAGEKIT@
#define GRUB_INSTALL_EXE "@GRUB_INSTALL_EXE@"
#define GRUB_MKCONFIG_EXE "@GRUB_MKCONFIG_EXE@"
#define GRUB_PROBE_EXE "@GRUB_PROBE_EXE@"
#define GRUB_SET_DEFAULT_EXE "@GRUB_SET_DEFAULT_EXE@"
#define GRUB_MAKE_PASSWD_EXE "@GRUB_MAKE_PASSWD_EXE@"
#define GRUB_MENU "@GRUB_MENU@"
#define GRUB_MENU_CUSTOM "@GRUB_MENU_CUSTOM@"
#define GRUB_CONFIG "@GRUB_CONFIG@"
#define GRUB_ENV "@GRUB_ENV@"
#define GRUB_MEMTEST "@GRUB_MEMTEST@"
#define GRUB_CONFIGDIR "@GRUB_CONFIGDIR@/"
#define GRUB_SECURITY "@GRUB_SECURITY@"
#define GRUB_RMECHO "@GRUB_RMECHO@"
enum actionType {
actionLoad,
actionProbe,
actionProbevbe
};
enum GrubFile {
GrubMenuFile,
GrubConfigurationFile,
GrubEnvironmentFile,
GrubMemtestFile,
GrubGroupFile,
GrubCustomEntryFile
};
#endif