Skip to content

Latest commit

 

History

History
46 lines (36 loc) · 1.39 KB

usb_moded-config.h

File metadata and controls

46 lines (36 loc) · 1.39 KB
 
Mar 22, 2011
Mar 22, 2011
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
/*
Copyright (C) 2010 Nokia Corporation. All rights reserved.
author: Philippe De Swert <philippe.de-swert@nokia.com>
This program is free software; you can redistribute it and/or
modify it under the terms of the Lesser GNU General Public License
version 2 as published by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the Lesser GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
02110-1301 USA
*/
#define FS_MOUNT_CONFIG_FILE "/etc/usb-moded/usb-moded.ini"
#define FS_MOUNT_DEFAULT "/dev/mmcblk0p1"
#define FS_MOUNT_ENTRY "mountpoints"
#define FS_MOUNT_KEY "mount"
#define FS_SYNC_ENTRY "sync"
#define FS_SYNC_KEY "nofua"
#define ALT_MOUNT_ENTRY "altmount"
#define ALT_MOUNT_KEY "mount"
Apr 7, 2011
Apr 7, 2011
32
33
#define UDEV_PATH_ENTRY "udev"
#define UDEV_PATH_KEY "path"
Apr 6, 2011
Apr 6, 2011
34
35
#define CDROM_PATH_ENTRY "cdrom"
#define CDROM_PATH_KEY "path"
Mar 22, 2011
Mar 22, 2011
36
37
38
39
const char * find_mounts(void);
int find_sync(void);
const char * find_alt_mount(void);
Apr 7, 2011
Apr 7, 2011
40
41
42
43
#ifdef UDEV
const char * find_udev_path(void);
#endif
Apr 6, 2011
Apr 6, 2011
44
45
46
#ifdef NOKIA
const char * find_cdrom_path(void);
#endif