Home | History | Annotate | Download | only in sailfish
      1 /*
      2  * Copyright (C) 2016 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 /* This file is used to define the properties of the filesystem
     18 ** images generated by build tools (mkbootfs and mkyaffs2image) and
     19 ** by the device side of adb.
     20 */
     21 
     22 #include <private/android_filesystem_config.h>
     23 
     24 static const struct fs_path_config android_device_dirs[] = {
     25     { 00771, AID_SYSTEM,      AID_SYSTEM,     0, "bt_firmware"},
     26 };
     27 
     28 /* Rules for files.
     29 ** These rules are applied based on "first match", so they
     30 ** should start with the most specific path and work their
     31 ** way up to the root. Prefixes ending in * denotes wildcard
     32 ** and will allow partial matches.
     33 */
     34 static const struct fs_path_config android_device_files[] = {
     35     { 00700, AID_CAMERA,    AID_SHELL,     (1ULL << CAP_SYS_NICE), "system/bin/mm-qcamera-daemon" },
     36     { 00755, AID_SYSTEM,    AID_SYSTEM,    (1ULL << CAP_NET_BIND_SERVICE), "system/bin/pm-service" },
     37     { 00755, AID_SYSTEM,    AID_SYSTEM,    (1ULL << CAP_NET_BIND_SERVICE), "system/bin/imsdatadaemon" },
     38     { 00755, AID_SYSTEM,    AID_RADIO,     (1ULL << CAP_NET_BIND_SERVICE), "system/bin/ims_rtp_daemon" },
     39     { 00755, AID_SYSTEM,    AID_SYSTEM,    (1ULL << CAP_NET_BIND_SERVICE), "system/bin/cnss-daemon"},
     40 #ifdef NO_ANDROID_FILESYSTEM_CONFIG_DEVICE_DIRS
     41     { 00000, AID_ROOT,      AID_ROOT,      0, "system/etc/fs_config_dirs" },
     42 #endif
     43 };
     44