Skip to content

Latest commit

 

History

History
27 lines (25 loc) · 994 Bytes

constants.h

File metadata and controls

27 lines (25 loc) · 994 Bytes
 
Oct 8, 2012
Oct 8, 2012
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
* @file constants.h
* @copyright 2012 Jolla Ltd.
* @author Bernd Wachter <bernd.wachter@jollamobile.com>
* @date 2012
*/
#ifndef _CONSTANTS_H
#define _CONSTANTS_H
/// The group ID SSU expects to run as. This is usually the GID of the main phone user
#define SSU_GROUP_ID 1000
/// Path to the main SSU configuration file
#define SSU_REPO_CONFIGURATION "/usr/share/ssu/repos.ini"
Nov 4, 2012
Nov 4, 2012
15
16
/// Path to board / device family mappings file
#define SSU_BOARD_MAPPING_CONFIGURATION "/usr/share/ssu/board-mappings.ini"
Mar 19, 2013
Mar 19, 2013
17
18
/// Path to config.d for board mappings
#define SSU_BOARD_MAPPING_CONFIGURATION_DIR "/usr/share/ssu/board-mappings.d"
Apr 1, 2013
Apr 1, 2013
19
20
/// Directory where all the non-user modifiable data sits
#define SSU_DATA_DIR "/usr/share/ssu/"
Oct 8, 2012
Oct 8, 2012
21
22
/// The SSU protocol version used by the ssu client libraries
#define SSU_PROTOCOL_VERSION "1"
Mar 27, 2013
Mar 27, 2013
23
24
/// Maximum recursion level for resolving variables
#define SSU_MAX_RECURSION 1024
Mar 28, 2013
Mar 28, 2013
25
26
/// Path to zypper repo configuration
#define ZYPP_REPO_PATH "/etc/zypp/repos.d"
Oct 8, 2012
Oct 8, 2012
27
#endif