Compare commits

...

5 Commits

Author SHA1 Message Date
Ruchit Marathe 986937e5bf sm7125: Go erofs 3 weeks ago
Wolfram Liebchen a5af26bb80 sm7125-common: More notification icons on AOD screen 1 month ago
Simon1511 dcfa38aef8 sm7125-common: sepolicy: remove dtbo_block_device type 2 months ago
Bruno Martins dd1cbc85a5 sm7125-common: Remove deprecated trust HAL 2 months ago
Steven Moreland 63c4611bb1 sm7125-common: Move /vendor/ueventd.rc to /vendor/etc/ueventd.rc 2 months ago
  1. 9
      BoardConfigCommon.mk
  2. 4
      common.mk
  3. 21
      overlay/frameworks/base/packages/SystemUI/res/values/integers.xml
  4. 2
      rootdir/Android.mk
  5. 4
      rootdir/etc/fstab.default
  6. 1
      sepolicy/vendor/device.te

@ -95,10 +95,10 @@ BOARD_ROOT_EXTRA_FOLDERS += \
# File systems
BOARD_USERDATAIMAGE_FILE_SYSTEM_TYPE := f2fs
BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE := ext4
BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE := ext4
BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE := ext4
BOARD_ODMIMAGE_FILE_SYSTEM_TYPE := ext4
BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE := erofs
BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE := erofs
BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE := erofs
BOARD_ODMIMAGE_FILE_SYSTEM_TYPE := erofs
BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4
BOARD_USES_METADATA_PARTITION := true
@ -125,6 +125,7 @@ BOARD_VENDORIMAGE_EXTFS_INODE_COUNT := -1
BOARD_PRODUCTIMAGE_EXTFS_INODE_COUNT := -1
BOARD_ODMIMAGE_EXTFS_INODE_COUNT := -1
BOARD_EROFS_PCLUSTER_SIZE := 131072
BOARD_FLASH_BLOCK_SIZE := 131072
# Out dirs

@ -379,10 +379,6 @@ PRODUCT_PACKAGES += \
PRODUCT_PACKAGES += \
vendor.lineage.touch@1.0-service.sm7125
# Trust HAL
PRODUCT_PACKAGES += \
vendor.lineage.trust@1.0-service
# Vendor service manager
PRODUCT_PACKAGES += \
vndservicemanager

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2018 The Android Open Source Project
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License
-->
<resources>
<!-- Maximum number of notification icons shown on the Always on Display
(excluding overflow dot) -->
<integer name="max_notif_icons_on_aod">9</integer>
</resources>

@ -162,7 +162,7 @@ LOCAL_MODULE_STEM := ueventd.rc
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE_CLASS := ETC
LOCAL_SRC_FILES := etc/ueventd.qcom.rc
LOCAL_MODULE_PATH := $(TARGET_OUT_VENDOR)
LOCAL_MODULE_PATH := $(TARGET_OUT_VENDOR_ETC)
include $(BUILD_PREBUILT)
# /vendor/bin scripts

@ -34,10 +34,14 @@
#<src> <mnt_point> <type> <mnt_flags and options> <fs_mgr_flags>
system /system ext4 ro wait,logical,first_stage_mount
system /system erofs ro wait,logical,first_stage_mount
system /system f2fs ro wait,logical,first_stage_mount
product /product ext4 ro wait,logical,first_stage_mount
product /product erofs ro wait,logical,first_stage_mount
vendor /vendor ext4 ro wait,logical,first_stage_mount
vendor /vendor erofs ro wait,logical,first_stage_mount
odm /odm ext4 ro wait,logical,first_stage_mount
odm /odm erofs ro wait,logical,first_stage_mount
/dev/block/bootdevice/by-name/boot /boot emmc defaults defaults
/dev/block/bootdevice/by-name/recovery /recovery emmc defaults defaults
/dev/block/bootdevice/by-name/cache /cache ext4 noatime,nosuid,nodev,noauto_da_alloc,discard,journal_checksum,data=ordered,errors=panic wait,check

@ -1,6 +1,5 @@
# device.te
type efs_block_device, dev_type;
type dtbo_block_device, dev_type;
type modem_block_device, dev_type;
type omr_block_device, dev_type;
type firmware_block_device, dev_type;

Loading…
Cancel
Save