]> git.ozlabs.org Git - petitboot/blob - petitboot-paths.h
Fix random bytes in string in kboot parser
[petitboot] / petitboot-paths.h
1 #ifndef _PATHS_H
2 #define _PATHS_H
3
4 #ifndef PREFIX
5 #define PREFIX "/usr"
6 #endif
7
8 #ifndef PKG_SHARE_DIR
9 #define PKG_SHARE_DIR PREFIX "/share/petitboot"
10 #endif
11
12 #ifndef TMP_DIR
13 #define TMP_DIR "/var/tmp"
14 #endif
15
16 #define PBOOT_DEVICE_SOCKET "/var/tmp/petitboot-dev"
17 #define MOUNT_BIN "/bin/mount"
18 #define UMOUNT_BIN "/bin/umount"
19
20 /* at present, all default artwork strings are const. */
21 #define artwork_pathname(s) (PKG_SHARE_DIR "/artwork/" s)
22
23 #endif /* _PATHS_H */