1 /*  RetroArch - A frontend for libretro.
2  *  Copyright (C) 2010-2014 - Hans-Kristian Arntzen
3  *  Copyright (C) 2011-2016 - Daniel De Matteis
4  *  Copyright (C) 2014-2016 - Jean-André Santoni
5  *
6  *  RetroArch is free software: you can redistribute it and/or modify it under the terms
7  *  of the GNU General Public License as published by the Free Software Found-
8  *  ation, either version 3 of the License, or (at your option) any later version.
9  *
10  *  RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
11  *  without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  *  PURPOSE.  See the GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License along with RetroArch.
15  *  If not, see <http://www.gnu.org/licenses/>.
16  */
17 
18 #ifndef __RARCH_LAKKA_H
19 #define __RARCH_LAKKA_H
20 
21 #define LAKKA_SSH_PATH       "/storage/.cache/services/sshd.conf"
22 #define LAKKA_SAMBA_PATH     "/storage/.cache/services/samba.conf"
23 #define LAKKA_BLUETOOTH_PATH "/storage/.cache/services/bluez.conf"
24 #define LAKKA_UPDATE_DIR     "/storage/.update/"
25 #define LAKKA_CONNMAN_DIR    "/storage/.cache/connman/"
26 #define LAKKA_LOCALAP_PATH   "/storage/.cache/services/localap.conf"
27 #define LAKKA_TIMEZONE_PATH  "/storage/.cache/timezone"
28 
29 #define DEFAULT_TIMEZONE "UTC"
30 #define TIMEZONE_LENGTH 255
31 
32 #include "switch_performance_profiles.h"
33 
34 #endif
35