mirror of
https://github.com/PixelExperience-Devices/device_xiaomi_miatoll.git
synced 2025-04-29 02:37:19 +09:00
* With MIUI 13, Xiaomi deleted sensor_temperature from its sensor list * Let's use a simple script that clears out the long gone sensor entry from the list Change-Id: I7d1ba1aeb40627f5732422a4135cc5394be83703
74 lines
1.2 KiB
Plaintext
74 lines
1.2 KiB
Plaintext
//
|
|
// Copyright (C) 2021 The LineageOS Project
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
// Init scripts
|
|
sh_binary {
|
|
name: "init.qcom.early_boot.sh",
|
|
src: "bin/init.qcom.early_boot.sh",
|
|
vendor: true,
|
|
}
|
|
|
|
sh_binary {
|
|
name: "init.qcom.sh",
|
|
src: "bin/init.qcom.sh",
|
|
vendor: true,
|
|
}
|
|
|
|
sh_binary {
|
|
name: "init.qti.chg_policy.sh",
|
|
src: "bin/init.qti.chg_policy.sh",
|
|
vendor: true,
|
|
}
|
|
|
|
sh_binary {
|
|
name: "init.sensors_fixup.sh",
|
|
src: "bin/init.sensors_fixup.sh",
|
|
vendor: true,
|
|
}
|
|
|
|
// fstab
|
|
prebuilt_etc {
|
|
name: "fstab.qcom",
|
|
src: "etc/fstab.qcom",
|
|
vendor: true,
|
|
}
|
|
|
|
// Init configuration files
|
|
prebuilt_etc {
|
|
name: "init.device.rc",
|
|
src: "etc/init.device.rc",
|
|
sub_dir: "init/hw",
|
|
vendor: true,
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "init.qcom.power.rc",
|
|
src: "etc/init.qcom.power.rc",
|
|
sub_dir: "init/hw",
|
|
vendor: true,
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "init.qcom.rc",
|
|
src: "etc/init.qcom.rc",
|
|
sub_dir: "init/hw",
|
|
vendor: true,
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "init.target.rc",
|
|
src: "etc/init.target.rc",
|
|
sub_dir: "init/hw",
|
|
vendor: true,
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "ueventd.qcom.rc",
|
|
filename: "ueventd.rc",
|
|
src: "etc/ueventd.qcom.rc",
|
|
vendor: true,
|
|
}
|