fix borked repo
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
#
|
||||
# Copyright (C) 2022 The Android Open Source Project
|
||||
# Copyright (C) 2022 SebaUbuntu's TWRP device tree generator
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
|
||||
ifeq ($(TARGET_DEVICE),aladeng)
|
||||
include $(call all-subdir-makefiles,$(LOCAL_PATH))
|
||||
endif
|
||||
@@ -0,0 +1,13 @@
|
||||
#
|
||||
# Copyright (C) 2022 The Android Open Source Project
|
||||
# Copyright (C) 2022 SebaUbuntu's TWRP device tree generator
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
PRODUCT_MAKEFILES := $(LOCAL_DIR)/omni_aladeng.mk
|
||||
|
||||
COMMON_LUNCH_CHOICES := \
|
||||
omni_aladeng-user \
|
||||
omni_aladeng-userdebug \
|
||||
omni_aladeng-eng
|
||||
@@ -0,0 +1,77 @@
|
||||
#
|
||||
# Copyright (C) 2022 The Android Open Source Project
|
||||
# Copyright (C) 2022 SebaUbuntu's TWRP device tree generator
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
DEVICE_PATH := device/sprd/aladeng
|
||||
|
||||
# For building with minimal manifest
|
||||
ALLOW_MISSING_DEPENDENCIES := true
|
||||
|
||||
# Architecture
|
||||
TARGET_ARCH := arm
|
||||
TARGET_ARCH_VARIANT := armv7-a-neon
|
||||
TARGET_CPU_ABI := armeabi-v7a
|
||||
TARGET_CPU_ABI2 := armeabi
|
||||
TARGET_CPU_VARIANT := generic
|
||||
|
||||
# Assert
|
||||
#TARGET_OTA_ASSERT_DEVICE := ALADENG
|
||||
|
||||
# File systems
|
||||
BOARD_HAS_LARGE_FILESYSTEM := true
|
||||
#BOARD_RECOVERYIMAGE_PARTITION_SIZE := 36700160 # This is the maximum known partition size, but it can be higher, so we just omit it
|
||||
BOARD_SYSTEMIMAGE_PARTITION_TYPE := ext4
|
||||
BOARD_USERDATAIMAGE_FILE_SYSTEM_TYPE := ext4
|
||||
BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE := ext4
|
||||
TARGET_USERIMAGES_USE_EXT4 := true
|
||||
TARGET_USERIMAGES_USE_F2FS := true
|
||||
TARGET_COPY_OUT_VENDOR := vendor
|
||||
|
||||
# Kernel
|
||||
BOARD_KERNEL_CMDLINE := console=ttyS1,115200n8
|
||||
TARGET_PREBUILT_KERNEL := $(DEVICE_PATH)/prebuilt/zImage-dtb
|
||||
BOARD_PREBUILT_DTBOIMAGE := $(DEVICE_PATH)/prebuilt/dtbo.img
|
||||
BOARD_INCLUDE_RECOVERY_DTBO := true
|
||||
BOARD_BOOTIMG_HEADER_VERSION := 1
|
||||
BOARD_KERNEL_BASE := 0x00000000
|
||||
BOARD_KERNEL_PAGESIZE := 2048
|
||||
BOARD_RAMDISK_OFFSET := 0x05400000
|
||||
BOARD_KERNEL_TAGS_OFFSET := 0x00000100
|
||||
BOARD_FLASH_BLOCK_SIZE := 131072 # (BOARD_KERNEL_PAGESIZE * 64)
|
||||
BOARD_MKBOOTIMG_ARGS += --ramdisk_offset $(BOARD_RAMDISK_OFFSET)
|
||||
BOARD_MKBOOTIMG_ARGS += --tags_offset $(BOARD_KERNEL_TAGS_OFFSET)
|
||||
BOARD_MKBOOTIMG_ARGS += --header_version $(BOARD_BOOTIMG_HEADER_VERSION)
|
||||
BOARD_KERNEL_IMAGE_NAME := zImage-dtb
|
||||
|
||||
# Platform
|
||||
TARGET_BOARD_PLATFORM := sp9832e
|
||||
|
||||
# Hack: prevent anti rollback
|
||||
PLATFORM_SECURITY_PATCH := 2099-12-31
|
||||
VENDOR_SECURITY_PATCH := 2099-12-31
|
||||
PLATFORM_VERSION := 16.1.0
|
||||
|
||||
# TWRP Configuration
|
||||
TW_EXCLUDE_BASH := true
|
||||
TW_EXCLUDE_PYTHON := true
|
||||
TW_EXCLUDE_TWRPAPP := true
|
||||
TW_THEME := watch_mdpi
|
||||
TW_ROUND_SCREEN := false
|
||||
TW_EXTRA_LANGUAGES := true
|
||||
TW_SCREEN_BLANK_ON_BOOT := true
|
||||
TW_INPUT_BLACKLIST := "hbtp_vm"
|
||||
TW_USE_TOOLBOX := true
|
||||
TW_INCLUDE_CRYPTO := true
|
||||
TW_REBOOT_BOOTLOADER := true
|
||||
TW_REBOOT_RECOVERY := true
|
||||
BOARD_HAS_NO_SELECT_BUTTON := true
|
||||
BOARD_HAS_LARGE_FILESYSTEM := true
|
||||
RECOVERY_SDCARD_ON_DATA := true
|
||||
TW_USE_MODEL_HARDWARE_ID_FOR_DEVICE_ID := true
|
||||
|
||||
# add proper screen res
|
||||
TARGET_SCREEN_WIDTH := 240
|
||||
TARGET_SCREEN_HEIGHT := 240
|
||||
@@ -0,0 +1,8 @@
|
||||
#
|
||||
# Copyright (C) 2022 The Android Open Source Project
|
||||
# Copyright (C) 2022 SebaUbuntu's TWRP device tree generator
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
LOCAL_PATH := device/sprd/aladeng
|
||||
@@ -0,0 +1,25 @@
|
||||
#
|
||||
# Copyright (C) 2022 The Android Open Source Project
|
||||
# Copyright (C) 2022 SebaUbuntu's TWRP device tree generator
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
# Inherit from those products. Most specific first.
|
||||
$(call inherit-product-if-exists, $(SRC_TARGET_DIR)/product/embedded.mk)
|
||||
$(call inherit-product, $(SRC_TARGET_DIR)/product/full_base_telephony.mk)
|
||||
$(call inherit-product, $(SRC_TARGET_DIR)/product/languages_full.mk)
|
||||
|
||||
# Inherit from ALADENG device
|
||||
$(call inherit-product, device/sprd/aladeng/device.mk)
|
||||
|
||||
# Inherit some common Omni stuff.
|
||||
$(call inherit-product, vendor/omni/config/common.mk)
|
||||
$(call inherit-product, vendor/omni/config/gsm.mk)
|
||||
|
||||
# Device identifier. This must come after all inclusions
|
||||
PRODUCT_DEVICE := aladeng
|
||||
PRODUCT_NAME := omni_aladeng
|
||||
PRODUCT_BRAND := H1-C-ALADENG-PRO
|
||||
PRODUCT_MODEL := H1-C-ALADENG-PRO
|
||||
PRODUCT_MANUFACTURER := sprd
|
||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,37 @@
|
||||
/spl emmc /dev/block/mmcblk0boot0 flags=display=spl
|
||||
/spl_bk emmc /dev/block/mmcblk0boot1 flags=display=spl_bk
|
||||
/uboot emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/uboot flags=display=uboot
|
||||
/uboot_bak emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/uboot_bak flags=display=uboot_bak
|
||||
/sml emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/sml flags=display=sml
|
||||
/sml_bak emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/sml_bak flags=display=sml_bak
|
||||
/tos emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/trustos flags=display=tos
|
||||
/tos_bak emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/trustos_bak flags=display=tos_bak
|
||||
/vbmeta emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/vbmeta flags=display=vbmeta
|
||||
/vbmeta_bak emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/vbmeta_bak flags=display=vbmeta_bak
|
||||
/dtb emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/dtb flags=display=dtb
|
||||
/dtbo emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/dtbo flags=display=dtbo
|
||||
/ltedsp emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/l_ldsp flags=display=ltedsp
|
||||
/ltegdsp emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/l_gdsp flags=display=ltegdsp
|
||||
/ltemodem emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/l_modem flags=display=ltemodem
|
||||
/ltedeltanv emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/l_deltanv flags=display=ltedeltanv
|
||||
/ltefixnv1 emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/l_fixnv1 flags=display=ltefixnv1
|
||||
/ltefixnv2 emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/l_fixnv2 flags=display=ltefixnv2
|
||||
/lteruntimenv1 emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/l_runtimenv1 flags=display=lteruntimenv1
|
||||
/lteruntimenv2 emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/l_runtimenv2 flags=display=lteruntimenv2
|
||||
/wcnmodem emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/wcnmodem flags=display=wcnmodem
|
||||
/gnssmodem emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/gpsgl flags=display=gnssmodem
|
||||
/gnssbdmodem emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/gpsbd flags=display=gnssbdmodem
|
||||
/pmsys emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/pm_sys flags=display=pmsys
|
||||
/misc emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/misc flags=display=misc
|
||||
/boot emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/boot flags=display=boot
|
||||
/recovery emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/recovery flags=display=recovery
|
||||
/persist emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/persist flags=display=persist
|
||||
/logo emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/logo flags=display=logo
|
||||
/fbootlogo emmc /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/fbootlogo flags=display=fbootlogo
|
||||
/system ext4 /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/system flags=display=system
|
||||
/vendor ext4 /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/vendor flags=display=vendor
|
||||
/product ext4 /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/product flags=display=product
|
||||
/data f2fs /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/userdata flags=display=data
|
||||
/cache ext4 /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/cache flags=display=cache
|
||||
/mnt/vendor ext4 /dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/prodnv flags=display=mntvendor
|
||||
/storage/sdcard0 vfat /dev/block/platform/soc/soc:ap-ahb/20300000.sdio/mmcblk1p1 flags=display=sdcard0
|
||||
@@ -0,0 +1,6 @@
|
||||
#add for board init.rc for recovery mode
|
||||
on post-fs
|
||||
insmod /lib/modules/bstclass.ko
|
||||
insmod /lib/modules/bma2x2.ko
|
||||
insmod /lib/modules/ltr_558als.ko
|
||||
insmod /lib/modules/akm09911.ko
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,137 @@
|
||||
subsystem adf
|
||||
devname uevent_devname
|
||||
|
||||
subsystem graphics
|
||||
devname uevent_devpath
|
||||
dirname /dev/graphics
|
||||
|
||||
subsystem drm
|
||||
devname uevent_devpath
|
||||
dirname /dev/dri
|
||||
|
||||
subsystem oncrpc
|
||||
devname uevent_devpath
|
||||
dirname /dev/oncrpc
|
||||
|
||||
subsystem adsp
|
||||
devname uevent_devpath
|
||||
dirname /dev/adsp
|
||||
|
||||
subsystem msm_camera
|
||||
devname uevent_devpath
|
||||
dirname /dev/msm_camera
|
||||
|
||||
subsystem input
|
||||
devname uevent_devpath
|
||||
dirname /dev/input
|
||||
|
||||
subsystem mtd
|
||||
devname uevent_devpath
|
||||
dirname /dev/mtd
|
||||
|
||||
subsystem sound
|
||||
devname uevent_devpath
|
||||
dirname /dev/snd
|
||||
|
||||
# ueventd can only set permissions on device nodes and their associated
|
||||
# sysfs attributes, not on arbitrary paths.
|
||||
#
|
||||
# format for /dev rules: devname mode uid gid
|
||||
# format for /sys rules: nodename attr mode uid gid
|
||||
# shortcut: "mtd@NN" expands to "/dev/mtd/mtdNN"
|
||||
|
||||
/dev/null 0666 root root
|
||||
/dev/zero 0666 root root
|
||||
/dev/full 0666 root root
|
||||
/dev/ptmx 0666 root root
|
||||
/dev/tty 0666 root root
|
||||
/dev/random 0666 root root
|
||||
/dev/urandom 0666 root root
|
||||
# Make HW RNG readable by group system to let EntropyMixer read it.
|
||||
/dev/hw_random 0440 root system
|
||||
/dev/ashmem 0666 root root
|
||||
/dev/binder 0666 root root
|
||||
/dev/hwbinder 0666 root root
|
||||
/dev/vndbinder 0666 root root
|
||||
|
||||
/dev/pmsg0 0222 root log
|
||||
|
||||
# the msm hw3d client device node is world writable/readable.
|
||||
/dev/msm_hw3dc 0666 root root
|
||||
|
||||
# gpu driver for adreno200 is globally accessible
|
||||
/dev/kgsl 0666 root root
|
||||
|
||||
# kms driver for drm based gpu
|
||||
/dev/dri/* 0666 root graphics
|
||||
|
||||
# these should not be world writable
|
||||
/dev/diag 0660 radio radio
|
||||
/dev/diag_arm9 0660 radio radio
|
||||
/dev/ttyMSM0 0600 bluetooth bluetooth
|
||||
/dev/uhid 0660 uhid uhid
|
||||
/dev/uinput 0660 system bluetooth
|
||||
/dev/alarm 0664 system radio
|
||||
/dev/rtc0 0640 system system
|
||||
/dev/tty0 0660 root system
|
||||
/dev/graphics/* 0660 root graphics
|
||||
/dev/msm_hw3dm 0660 system graphics
|
||||
/dev/input/* 0660 root input
|
||||
/dev/v4l-touch* 0660 root input
|
||||
/dev/eac 0660 root audio
|
||||
/dev/cam 0660 root camera
|
||||
/dev/pmem 0660 system graphics
|
||||
/dev/pmem_adsp* 0660 system audio
|
||||
/dev/pmem_camera* 0660 system camera
|
||||
/dev/oncrpc/* 0660 root system
|
||||
/dev/adsp/* 0660 system audio
|
||||
/dev/snd/* 0660 system audio
|
||||
/dev/mt9t013 0660 system system
|
||||
/dev/msm_camera/* 0660 system system
|
||||
/dev/akm8976_daemon 0640 compass system
|
||||
/dev/akm8976_aot 0640 compass system
|
||||
/dev/akm8973_daemon 0640 compass system
|
||||
/dev/akm8973_aot 0640 compass system
|
||||
/dev/bma150 0640 compass system
|
||||
/dev/cm3602 0640 compass system
|
||||
/dev/akm8976_pffd 0640 compass system
|
||||
/dev/lightsensor 0640 system system
|
||||
/dev/msm_pcm_out* 0660 system audio
|
||||
/dev/msm_pcm_in* 0660 system audio
|
||||
/dev/msm_pcm_ctl* 0660 system audio
|
||||
/dev/msm_snd* 0660 system audio
|
||||
/dev/msm_mp3* 0660 system audio
|
||||
/dev/audience_a1026* 0660 system audio
|
||||
/dev/tpa2018d1* 0660 system audio
|
||||
/dev/msm_audpre 0660 system audio
|
||||
/dev/msm_audio_ctl 0660 system audio
|
||||
/dev/htc-acoustic 0660 system audio
|
||||
/dev/vdec 0660 system audio
|
||||
/dev/q6venc 0660 system audio
|
||||
/dev/snd/dsp 0660 system audio
|
||||
/dev/snd/dsp1 0660 system audio
|
||||
/dev/snd/mixer 0660 system audio
|
||||
/dev/smd0 0640 radio radio
|
||||
/dev/qmi 0640 radio radio
|
||||
/dev/qmi0 0640 radio radio
|
||||
/dev/qmi1 0640 radio radio
|
||||
/dev/qmi2 0640 radio radio
|
||||
/dev/bus/usb/* 0660 root usb
|
||||
/dev/mtp_usb 0660 root mtp
|
||||
/dev/usb_accessory 0660 root usb
|
||||
/dev/tun 0660 system vpn
|
||||
|
||||
# CDMA radio interface MUX
|
||||
/dev/ts0710mux* 0640 radio radio
|
||||
/dev/ppp 0660 radio vpn
|
||||
|
||||
# sysfs properties
|
||||
/sys/devices/platform/trusty.* trusty_version 0440 root log
|
||||
/sys/devices/virtual/input/input* enable 0660 root input
|
||||
/sys/devices/virtual/input/input* poll_delay 0660 root input
|
||||
/sys/devices/virtual/usb_composite/* enable 0664 root system
|
||||
/sys/devices/system/cpu/cpu* cpufreq/scaling_max_freq 0664 system system
|
||||
/sys/devices/system/cpu/cpu* cpufreq/scaling_min_freq 0664 system system
|
||||
|
||||
# DVB API device nodes
|
||||
/dev/dvb* 0660 root system
|
||||
@@ -0,0 +1,87 @@
|
||||
/dev/sttygnss0 0660 system system
|
||||
/dev/spipe_gnss0 0660 system system
|
||||
/dev/spipe_gnss1 0660 system system
|
||||
|
||||
/dev/slog_gnss 0660 system system
|
||||
/dev/slog_wcn0 0660 system system
|
||||
/dev/ttyS3 0660 system system
|
||||
/dev/ttyS0 0660 bluetooth net_bt_admin
|
||||
/dev/power_ctl 0660 system system
|
||||
/dev/gnss_dbg 0660 system system
|
||||
/dev/fm 0660 media media
|
||||
/dev/ttyM0 0660 bluetooth net_bt_admin
|
||||
/dev/ttyM1 0660 bluetooth net_bt_admin
|
||||
/dev/trusty-ipc-dev0 0660 system system
|
||||
/dev/sttybt0 0660 bluetooth net_bt_admin
|
||||
/dev/ttyBT0 0660 bluetooth net_bt_admin
|
||||
|
||||
/dev/trusty-ipc-dev0 0660 system system
|
||||
/dev/stty_lte* 0660 radio system
|
||||
/dev/slog_lte 0660 system system
|
||||
/dev/slog_pm 0660 system system
|
||||
/dev/sdiag_lte 0660 system system
|
||||
/dev/spipe_lte* 0660 system system
|
||||
/dev/spipe_lte5 0660 radio system
|
||||
/dev/spipe_lte4 0660 media audio
|
||||
/dev/spipe_lte6 0660 media audio
|
||||
/dev/spipe_lte14 0660 audioserver audio
|
||||
/dev/spipe_pm* 0666 system system
|
||||
/dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/l_* 0660 system system
|
||||
/dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/pm_sys 0660 system system
|
||||
/dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/miscdata 0660 system system
|
||||
/dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/persist 0660 system system
|
||||
/dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/system 0660 system system
|
||||
/dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/gpsgl 0660 system root
|
||||
/dev/block/platform/soc/soc:ap-ahb/20600000.sdio/by-name/gpsbd 0660 system root
|
||||
|
||||
/dev/block/mmcblk1p* 0660 system system
|
||||
/dev/AKM099XX 0660 system system
|
||||
/dev/block/mmcblk0rpmb 0660 system system
|
||||
|
||||
/dev/vser 0660 system system
|
||||
/dev/ttyGS* 0660 system system
|
||||
|
||||
/dev/ion 0666 system graphics
|
||||
/dev/gsp 0660 system graphics
|
||||
|
||||
/dev/mali0 0666 system graphics
|
||||
/dev/sprd_jpg 0666 system camera
|
||||
/dev/sprd_jpg1 0660 system camera
|
||||
/dev/sprd_vsp 0660 system camera
|
||||
/dev/sprd_vpp 0660 system camera
|
||||
/dev/sprd_vsp_enc 0660 system camera
|
||||
|
||||
/dev/sprd_image 0660 system camera
|
||||
/dev/sprd_isp 0660 system camera
|
||||
/dev/sprd_sensor 0660 system camera
|
||||
/dev/sprd_cpp 0660 system camera
|
||||
/dev/map_user 0660 system system
|
||||
|
||||
/sys/devices/system/cpu/cpu* /cpufreq/interactive/boost 0660 media system
|
||||
/sys/devices/system/cpu/cpu* /cpufreq/interactive/boostpulse 0660 system system
|
||||
/sys/devices/system/cpu/cpu* /cpufreq/interactive/boostpulse_duration 0660 system system
|
||||
/sys/devices/system/cpu/cpu* /cpufreq/interactive/timer_rate 0660 system system
|
||||
/sys/devices/system/cpu/cpu* /cpufreq/interactive/hispeed_freq 0660 system system
|
||||
/sys/devices/system/cpu/cpu* /cpufreq/interactive/target_loads 0660 system system
|
||||
/sys/devices/system/cpu/cpu* /cpufreq/interactive/above_hispeed_delay 0660 system system
|
||||
/sys/devices/system/cpu/cpu* /cpufreq/interactive/timer_slack 0660 system system
|
||||
/sys/devices/system/cpu/cpu* /cpufreq/interactive/min_sample_time 0660 system system
|
||||
/sys/devices/system/cpu/cpu* /cpufreq/interactive/io_is_busy 0660 system system
|
||||
|
||||
/dev/input/event* 0660 system input
|
||||
/sys/devices/virtual/input/input* acc_enable 0660 system input
|
||||
/sys/devices/virtual/input/input* acc_delay 0660 system input
|
||||
/sys/devices/virtual/input/input* gyro_enable 0660 system input
|
||||
/sys/devices/virtual/input/input* gyro_delay 0660 system input
|
||||
/sys/devices/virtual/input/input* enable 0660 system input
|
||||
/sys/devices/virtual/input/input* delay 0660 system input
|
||||
/sys/devices/virtual/input/input* chip_info 0660 system input
|
||||
/sys/class/input/input* enable 0660 system input
|
||||
/sys/class/input/input* delay 0660 system input
|
||||
/sys/class/input/input* chip_info 0660 system input
|
||||
/dev/ltr_558als 0660 system input
|
||||
/dev/qmax981 0660 system input
|
||||
/sys/class/xr-gsensor/device/gsensor 0660 system input
|
||||
/sys/class/xr-gsensor/device/delay_acc 0660 system input
|
||||
/sys/class/xr-pls/device/als 0660 system input
|
||||
/sys/class/xr-pls/device/proximity 0660 system input
|
||||
@@ -0,0 +1,10 @@
|
||||
#
|
||||
# Copyright (C) 2022 The Android Open Source Project
|
||||
# Copyright (C) 2022 SebaUbuntu's TWRP device tree generator
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
add_lunch_combo omni_aladeng-user
|
||||
add_lunch_combo omni_aladeng-userdebug
|
||||
add_lunch_combo omni_aladeng-eng
|
||||
Reference in New Issue
Block a user