micky387 | b9e88d9 | 2022-10-27 12:12:50 +0200 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2019 The LineageOS 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 | set -e |
| 18 | |
| 19 | # Load extract_utils and do some sanity checks |
| 20 | MY_DIR="${BASH_SOURCE%/*}" |
| 21 | if [[ ! -d "$MY_DIR" ]]; then MY_DIR="$PWD"; fi |
| 22 | |
| 23 | OMNI_ROOT="$MY_DIR"/../../.. |
| 24 | |
| 25 | HELPER="$OMNI_ROOT"/vendor/omni/build/tools/extract_utils.sh |
| 26 | |
| 27 | if [ ! -f "$HELPER" ]; then |
| 28 | echo "Unable to find helper script at $HELPER" |
| 29 | exit 1 |
| 30 | fi |
| 31 | . "$HELPER" |
| 32 | |
| 33 | if [ -z "$1" ]; then |
| 34 | echo "No input image supplied" |
| 35 | exit 1 |
| 36 | fi |
| 37 | |
| 38 | if [ -z "$2" ]; then |
| 39 | echo "No output filename supplied" |
| 40 | exit 1 |
| 41 | fi |
| 42 | |
| 43 | VENDOR_SKIP_FILES_COMMON=( |
| 44 | |
| 45 | # Asus setenforce |
| 46 | "bin/sar_setting" |
| 47 | "bin/savelogs.sh" |
| 48 | "bin/savelogmtp.sh" |
| 49 | "bin/setenforce.sh" |
| 50 | |
| 51 | # Audio |
| 52 | "etc/boot_sound/boot_sound_1.wav" |
| 53 | "etc/boot_sound/boot_sound_2.wav" |
| 54 | "etc/boot_sound/boot_sound_3.wav" |
| 55 | "etc/boot_sound/boot_sound_4.wav" |
| 56 | "etc/boot_sound/boot_sound_5.wav" |
| 57 | "etc/boot_sound/boot_sound_6.wav" |
| 58 | "etc/boot_sound/boot_sound_7.wav" |
| 59 | "etc/audio/audio_policy_configuration.xml" |
micky387 | 1fb6c81 | 2023-01-26 18:18:06 +0100 | [diff] [blame] | 60 | "etc/audio/audio_policy_configuration_ZS670KS.xml" |
micky387 | b9e88d9 | 2022-10-27 12:12:50 +0200 | [diff] [blame] | 61 | "etc/audio_effects.xml" |
micky387 | 4807018 | 2023-07-28 16:02:52 +0200 | [diff] [blame] | 62 | "etc/audio_effects_ZS670KS.xml" |
micky387 | b9e88d9 | 2022-10-27 12:12:50 +0200 | [diff] [blame] | 63 | "etc/audio_io_policy.conf" |
| 64 | "etc/audio_policy_configuration.xml" |
| 65 | "etc/audio_policy_configuration_ZS670KS.xml" |
| 66 | "etc/audio_policy_volumes.xml" |
| 67 | "etc/audio_policy_volumes_ZS670KS.xml" |
| 68 | "etc/audio_tuning_mixer.txt" |
micky387 | c742977 | 2023-11-27 09:58:09 +0100 | [diff] [blame] | 69 | "etc/permissions/android.hardware.bluetooth.xml" |
| 70 | "etc/permissions/android.hardware.bluetooth_le.xml" |
micky387 | b9e88d9 | 2022-10-27 12:12:50 +0200 | [diff] [blame] | 71 | "etc/bluetooth_qti_audio_policy_configuration.xml" |
| 72 | "bin/hw/android.hardware.audio.service" |
| 73 | "etc/init/android.hardware.audio.service.rc" |
| 74 | "lib/android.hardware.audio.common-util.so" |
| 75 | "lib/android.hardware.audio.common@2.0-util.so" |
| 76 | "lib/android.hardware.audio.common@4.0-util.so" |
| 77 | "lib/android.hardware.audio.common@5.0-util.so" |
| 78 | "lib/android.hardware.audio.common@6.0-util.so" |
micky387 | c742977 | 2023-11-27 09:58:09 +0100 | [diff] [blame] | 79 | "lib/libbluetooth_audio_session.so" |
micky387 | f05a5b9 | 2023-11-27 10:01:00 +0100 | [diff] [blame] | 80 | "lib/libcodec2_hidl@1.0.so" |
| 81 | "lib/libcodec2_vndk.so" |
micky387 | b9e88d9 | 2022-10-27 12:12:50 +0200 | [diff] [blame] | 82 | "lib/hw/android.hardware.audio.effect@2.0-impl.so" |
| 83 | "lib/hw/android.hardware.audio.effect@4.0-impl.so" |
| 84 | "lib/hw/android.hardware.audio.effect@5.0-impl.so" |
| 85 | "lib/hw/android.hardware.audio.effect@6.0-impl.so" |
| 86 | "lib/hw/android.hardware.audio@2.0-impl.so" |
| 87 | "lib/hw/android.hardware.audio@4.0-impl.so" |
| 88 | "lib/hw/android.hardware.audio@5.0-impl.so" |
| 89 | "lib/hw/android.hardware.audio@6.0-impl.so" |
micky387 | c742977 | 2023-11-27 09:58:09 +0100 | [diff] [blame] | 90 | "lib/hw/android.hardware.bluetooth.audio@2.0-impl.so" |
micky387 | b9e88d9 | 2022-10-27 12:12:50 +0200 | [diff] [blame] | 91 | "lib64/android.hardware.audio.common-util.so" |
| 92 | "lib64/android.hardware.audio.common@2.0-util.so" |
| 93 | "lib64/android.hardware.audio.common@4.0-util.so" |
| 94 | "lib64/android.hardware.audio.common@5.0-util.so" |
| 95 | "lib64/android.hardware.audio.common@6.0-util.so" |
micky387 | c742977 | 2023-11-27 09:58:09 +0100 | [diff] [blame] | 96 | "lib64/libbluetooth_audio_session.so" |
micky387 | f05a5b9 | 2023-11-27 10:01:00 +0100 | [diff] [blame] | 97 | "lib64/libcodec2_hidl@1.0.so" |
| 98 | "lib64/libcodec2_vndk.so" |
micky387 | b9e88d9 | 2022-10-27 12:12:50 +0200 | [diff] [blame] | 99 | "lib64/hw/android.hardware.audio.effect@2.0-impl.so" |
| 100 | "lib64/hw/android.hardware.audio.effect@4.0-impl.so" |
| 101 | "lib64/hw/android.hardware.audio.effect@5.0-impl.so" |
| 102 | "lib64/hw/android.hardware.audio.effect@6.0-impl.so" |
| 103 | "lib64/hw/android.hardware.audio@2.0-impl.so" |
| 104 | "lib64/hw/android.hardware.audio@4.0-impl.so" |
| 105 | "lib64/hw/android.hardware.audio@5.0-impl.so" |
| 106 | "lib64/hw/android.hardware.audio@6.0-impl.so" |
micky387 | c742977 | 2023-11-27 09:58:09 +0100 | [diff] [blame] | 107 | "lib64/hw/android.hardware.bluetooth.audio@2.0-impl.so" |
| 108 | "lib/hw/audio.bluetooth.default.so" |
| 109 | "lib64/hw/audio.bluetooth.default.so" |
micky387 | b9e88d9 | 2022-10-27 12:12:50 +0200 | [diff] [blame] | 110 | "lib/hw/audio.primary.default.so" |
| 111 | "lib64/hw/audio.primary.default.so" |
| 112 | "lib/libeffects.so" |
| 113 | "lib/libeffectsconfig.so" |
| 114 | "lib64/libeffects.so" |
| 115 | "lib64/libeffectsconfig.so" |
| 116 | "lib/libnbaio_mono.so" |
| 117 | "lib64/libnbaio_mono.so" |
| 118 | |
| 119 | # Binary |
| 120 | "bin/acpi" |
| 121 | "bin/applypatch" |
| 122 | "bin/asus_mediaflag.sh" |
| 123 | "bin/base64" |
| 124 | "bin/basename" |
| 125 | "bin/boringssl_self_test32" |
| 126 | "bin/boringssl_self_test64" |
| 127 | "bin/btnvtool" |
| 128 | "bin/blockdev" |
| 129 | "bin/cal" |
| 130 | "bin/cat" |
| 131 | "bin/chattr" |
| 132 | "bin/chcon" |
| 133 | "bin/checkpoint_gc" |
| 134 | "bin/chgrp" |
| 135 | "bin/chmod" |
| 136 | "bin/chown" |
| 137 | "bin/chroot" |
| 138 | "bin/chrt" |
| 139 | "bin/cksum" |
| 140 | "bin/clear" |
| 141 | "bin/cmp" |
| 142 | "bin/comm" |
| 143 | "bin/cp" |
| 144 | "bin/cpio" |
| 145 | "bin/cut" |
| 146 | "bin/country.sh" |
| 147 | "bin/cplay" |
| 148 | "bin/csc/erase_batinfo.sh" |
| 149 | "bin/csc/restore_batinfo.sh" |
| 150 | "bin/cscclearlog.sh" |
| 151 | "bin/ddr_info.sh" |
| 152 | "bin/debug-diag" |
| 153 | "bin/date" |
| 154 | "bin/dd" |
| 155 | "bin/df" |
| 156 | "bin/diff" |
| 157 | "bin/dirname" |
| 158 | "bin/devmem" |
| 159 | "bin/dmesg" |
| 160 | "bin/dos2unix" |
| 161 | "bin/du" |
| 162 | "bin/echo" |
| 163 | "bin/egrep" |
| 164 | "bin/env" |
| 165 | "bin/expand" |
| 166 | "bin/expr" |
| 167 | "bin/fallocate" |
| 168 | "bin/false" |
| 169 | "bin/fastrpc_tests_apps" |
| 170 | "bin/fastrpc_tests_apps32" |
| 171 | "bin/firmware_version.sh" |
| 172 | "bin/fgrep" |
| 173 | "bin/file" |
| 174 | "bin/find" |
| 175 | "bin/flock" |
| 176 | "bin/fmt" |
| 177 | "bin/free" |
| 178 | "bin/fsync" |
| 179 | "bin/getconf" |
| 180 | "bin/getenforce" |
| 181 | "bin/getevent" |
| 182 | "bin/getprop" |
| 183 | "bin/groups" |
| 184 | "bin/gunzip" |
| 185 | "bin/gzip" |
| 186 | "bin/head" |
| 187 | "bin/hostname" |
| 188 | "bin/hwclock" |
| 189 | "bin/i2cdetect" |
| 190 | "bin/i2cdump" |
| 191 | "bin/i2cget" |
| 192 | "bin/i2cset" |
| 193 | "bin/iconv" |
| 194 | "bin/id" |
| 195 | "bin/ifconfig" |
| 196 | "bin/inotifyd" |
| 197 | "bin/insmod" |
| 198 | "bin/install" |
| 199 | "bin/install_key_server" |
| 200 | "bin/ionice" |
| 201 | "bin/iorenice" |
| 202 | "bin/irsc_util" |
| 203 | "bin/is_hdcp_valid" |
| 204 | "bin/kill" |
| 205 | "bin/killall" |
| 206 | "bin/ln" |
| 207 | "bin/load_policy" |
| 208 | "bin/log" |
| 209 | "bin/logname" |
| 210 | "bin/losetup" |
| 211 | "bin/ls" |
| 212 | "bin/lsattr" |
| 213 | "bin/lsmod" |
| 214 | "bin/lsof" |
| 215 | "bin/lspci" |
| 216 | "bin/lsusb" |
| 217 | "bin/md5sum" |
| 218 | "bin/microcom" |
| 219 | "bin/mkdir" |
| 220 | "bin/mkfifo" |
| 221 | "bin/mknod" |
| 222 | "bin/mkswap" |
| 223 | "bin/mktemp" |
| 224 | "bin/modinfo" |
| 225 | "bin/modprobe" |
| 226 | "bin/more" |
| 227 | "bin/mount" |
| 228 | "bin/mountpoint" |
| 229 | "bin/mv" |
| 230 | "bin/nc" |
| 231 | "bin/netcat" |
| 232 | "bin/netstat" |
| 233 | "bin/newfs_msdos" |
| 234 | "bin/nice" |
| 235 | "bin/nl" |
| 236 | "bin/nohup" |
| 237 | "bin/nproc" |
| 238 | "bin/nsenter" |
| 239 | "bin/od" |
| 240 | "bin/paste" |
| 241 | "bin/patch" |
| 242 | "bin/pgrep" |
| 243 | "bin/pidof" |
| 244 | "bin/pkill" |
| 245 | "bin/pmap" |
| 246 | "bin/prepare_asusdebug.sh" |
| 247 | "bin/printenv" |
| 248 | "bin/printf" |
| 249 | "bin/ps" |
| 250 | "bin/pwd" |
| 251 | "bin/qmi-framework-tests/qmi_test_mt_client_init_instance" |
| 252 | "bin/readlink" |
| 253 | "bin/readelf" |
| 254 | "bin/realpath" |
| 255 | "bin/renice" |
| 256 | "bin/restorecon" |
| 257 | "bin/rm" |
| 258 | "bin/rmdir" |
| 259 | "bin/rmmod" |
| 260 | "bin/runcon" |
| 261 | "bin/sed" |
| 262 | "bin/sendevent" |
| 263 | "bin/seq" |
| 264 | "bin/setenforce" |
| 265 | "bin/setprop" |
| 266 | "bin/setsid" |
| 267 | "bin/sha1sum" |
| 268 | "bin/sha224sum" |
| 269 | "bin/sha256sum" |
| 270 | "bin/sha384sum" |
| 271 | "bin/sha512sum" |
| 272 | "bin/sleep" |
| 273 | "bin/sort" |
| 274 | "bin/split" |
| 275 | "bin/start" |
| 276 | "bin/stat" |
| 277 | "bin/stop" |
| 278 | "bin/strings" |
| 279 | "bin/stty" |
| 280 | "bin/swapoff" |
| 281 | "bin/swapon" |
| 282 | "bin/sync" |
| 283 | "bin/sysctl" |
| 284 | "bin/tac" |
| 285 | "bin/tail" |
| 286 | "bin/tar" |
| 287 | "bin/taskset" |
| 288 | "bin/tee" |
| 289 | "bin/test" |
| 290 | "bin/test_BinMerge" |
| 291 | "bin/test_DualCamQcomAECali" |
| 292 | "bin/test_ShadingCaliForQcom" |
| 293 | "bin/test_aeCali" |
| 294 | "bin/test_afCaliDB" |
| 295 | "bin/test_chkCali" |
| 296 | "bin/test_diag" |
| 297 | "bin/test_genCali" |
| 298 | "bin/test_qafCali" |
| 299 | "bin/testapp_diag_senddata" |
| 300 | "bin/time" |
| 301 | "bin/timeout" |
| 302 | "bin/top" |
| 303 | "bin/touch" |
| 304 | "bin/touch_ver.sh" |
| 305 | "bin/tr" |
| 306 | "bin/true" |
| 307 | "bin/truncate" |
| 308 | "bin/tty" |
| 309 | "bin/ulimit" |
| 310 | "bin/umount" |
| 311 | "bin/uname" |
| 312 | "bin/uniq" |
| 313 | "bin/unix2dos" |
| 314 | "bin/unlink" |
| 315 | "bin/unshare" |
| 316 | "bin/uptime" |
| 317 | "bin/usleep" |
| 318 | "bin/uudecode" |
| 319 | "bin/uuencode" |
| 320 | "bin/uuidgen" |
| 321 | "bin/UTSdumpstate.sh" |
| 322 | "bin/UpdateAttestationKey" |
| 323 | "bin/UpdateDeviceName" |
| 324 | "bin/ubwcconvert" |
| 325 | "bin/ufs_info.sh" |
| 326 | "bin/vmstat" |
| 327 | "bin/watch" |
| 328 | "bin/wc" |
| 329 | "bin/which" |
| 330 | "bin/whoami" |
| 331 | "bin/WifiAntenna.sh" |
| 332 | "bin/WifiMac.sh" |
| 333 | "bin/WifiSARPower.sh" |
| 334 | "bin/xargs" |
| 335 | "bin/xxd" |
| 336 | "bin/yes" |
| 337 | "bin/zcat" |
| 338 | |
| 339 | # build.prop for Region specific |
| 340 | "build_eu.prop" |
| 341 | "build_ru_0.prop" |
| 342 | "build_ru_1.prop" |
| 343 | "default.prop" |
| 344 | |
micky387 | f7e957a | 2022-10-27 16:30:59 +0200 | [diff] [blame] | 345 | # Camera |
micky387 | b7f3f75 | 2023-12-10 13:46:01 +0100 | [diff] [blame^] | 346 | "etc/init/android.hardware.camera.provider@2.4-service_64.rc" |
micky387 | f7e957a | 2022-10-27 16:30:59 +0200 | [diff] [blame] | 347 | "lib/vendor.qti.hardware.camera.postproc@1.0-service-impl.so" |
| 348 | |
micky387 | 5a435af | 2023-12-10 13:35:26 +0100 | [diff] [blame] | 349 | # Cas |
| 350 | "bin/hw/android.hardware.cas@1.2-service" |
| 351 | "etc/init/android.hardware.cas@1.2-service.rc" |
| 352 | "etc/vintf/manifest/android.hardware.cas@1.2-service.xml" |
| 353 | |
micky387 | b9e88d9 | 2022-10-27 12:12:50 +0200 | [diff] [blame] | 354 | # config.fs |
| 355 | "etc/fs_config_dirs" |
| 356 | "etc/fs_config_files" |
| 357 | "etc/group" |
| 358 | "etc/passwd" |
| 359 | |
| 360 | # Crypto and Km |
| 361 | "bin/hw/android.hardware.keymaster@3.0-service-qti" |
| 362 | "bin/hw/android.hardware.keymaster@4.1-service-qti" |
| 363 | "bin/hw/android.hardware.keymaster@4.0-strongbox-service-qti" |
| 364 | "lib/hw/android.hardware.keymaster@3.0-impl-qti.so" |
| 365 | "lib64/hw/android.hardware.keymaster@3.0-impl-qti.so" |
| 366 | "lib/libkeymasterdeviceutils.so" |
| 367 | "lib/libkeymasterprovision.so" |
| 368 | "lib/libkeymasterutils.so" |
| 369 | "lib/libqtikeymaster4.so" |
| 370 | "lib/libspcom.so" |
| 371 | "bin/hw/vendor.qti.hardware.cryptfshw@1.0-service-qti" |
| 372 | "etc/init/vendor.qti.hardware.cryptfshw@1.0-service-qti.rc" |
| 373 | "lib/libcryptfshwcommon.so" |
| 374 | "lib/libcryptfshwhidl.so" |
| 375 | "lib64/libcryptfshwcommon.so" |
| 376 | "lib64/libcryptfshwhidl.so" |
| 377 | "lib/vendor.qti.hardware.cryptfshw@1.0.so" |
| 378 | "lib64/vendor.qti.hardware.cryptfshw@1.0.so" |
| 379 | |
| 380 | # Display |
| 381 | "lib/libqdMetaData.so" |
| 382 | "lib64/libqdMetaData.so" |
| 383 | "lib/libgralloc.qti.so" |
| 384 | "lib64/libgralloc.qti.so" |
| 385 | "lib/libdisplayconfig.qti.so" |
| 386 | "lib64/libdisplayconfig.qti.so" |
| 387 | "lib/vendor.display.config@1.0.so" |
| 388 | "lib/vendor.display.config@1.1.so" |
| 389 | "lib/vendor.display.config@1.10.so" |
| 390 | "lib/vendor.display.config@1.11.so" |
| 391 | "lib/vendor.display.config@1.2.so" |
| 392 | "lib/vendor.display.config@1.3.so" |
| 393 | "lib/vendor.display.config@1.4.so" |
| 394 | "lib/vendor.display.config@1.5.so" |
| 395 | "lib/vendor.display.config@1.6.so" |
| 396 | "lib/vendor.display.config@1.7.so" |
| 397 | "lib/vendor.display.config@1.8.so" |
| 398 | "lib/vendor.display.config@1.9.so" |
| 399 | "lib/vendor.display.config@2.0.so" |
| 400 | "lib64/vendor.display.config@1.0.so" |
| 401 | "lib64/vendor.display.config@1.1.so" |
| 402 | "lib64/vendor.display.config@1.10.so" |
| 403 | "lib64/vendor.display.config@1.11.so" |
| 404 | "lib64/vendor.display.config@1.2.so" |
| 405 | "lib64/vendor.display.config@1.3.so" |
| 406 | "lib64/vendor.display.config@1.4.so" |
| 407 | "lib64/vendor.display.config@1.5.so" |
| 408 | "lib64/vendor.display.config@1.6.so" |
| 409 | "lib64/vendor.display.config@1.7.so" |
| 410 | "lib64/vendor.display.config@1.8.so" |
| 411 | "lib64/vendor.display.config@1.9.so" |
| 412 | "lib64/vendor.display.config@2.0.so" |
micky387 | 9b5769a | 2023-01-26 18:14:21 +0100 | [diff] [blame] | 413 | "etc/init/vendor.qti.hardware.display.allocator-service.rc" |
| 414 | "etc/init/vendor.qti.hardware.display.composer-service.rc" |
| 415 | "etc/vintf/manifest/vendor.qti.hardware.display.composer-service.xml" |
| 416 | "etc/vintf/manifest/android.hardware.graphics.mapper-impl-qti-display.xml" |
| 417 | "etc/vintf/manifest/vendor.qti.hardware.display.allocator-service.xml" |
| 418 | "lib64/vendor.qti.hardware.display.composer@1.0.so" |
| 419 | "lib64/vendor.qti.hardware.display.composer@2.0.so" |
| 420 | "lib64/vendor.qti.hardware.display.composer@2.1.so" |
| 421 | "lib64/vendor.qti.hardware.display.composer@3.0.so" |
| 422 | "lib/vendor.qti.hardware.display.composer@1.0.so" |
| 423 | "lib/vendor.qti.hardware.display.composer@2.0.so" |
| 424 | "lib/vendor.qti.hardware.display.composer@2.1.so" |
| 425 | "etc/init/android.hardware.memtrack@1.0-service.rc" |
| 426 | "bin/hw/android.hardware.memtrack@1.0-service" |
| 427 | "bin/hw/vendor.qti.hardware.display.allocator-service" |
| 428 | "bin/hw/vendor.qti.hardware.display.composer-service" |
| 429 | "lib64/hw/android.hardware.memtrack@1.0-impl.so" |
| 430 | "lib/hw/android.hardware.memtrack@1.0-impl.so" |
| 431 | "lib64/hw/android.hardware.renderscript@1.0-impl.so" |
| 432 | "lib/hw/android.hardware.renderscript@1.0-impl.so" |
| 433 | "lib/hw/android.hardware.graphics.mapper@3.0-impl-qti-display.so" |
| 434 | "lib/hw/android.hardware.graphics.mapper@4.0-impl-qti-display.so" |
| 435 | "lib64/hw/android.hardware.graphics.mapper@3.0-impl-qti-display.so" |
| 436 | "lib64/hw/android.hardware.graphics.mapper@4.0-impl-qti-display.so" |
| 437 | "lib64/hw/gralloc.kona.so" |
| 438 | "lib/hw/gralloc.kona.so" |
| 439 | "lib64/hw/memtrack.kona.so" |
| 440 | "lib/hw/memtrack.kona.so" |
| 441 | "lib64/hw/lights.kona.so" |
| 442 | "lib/hw/lights.kona.so" |
| 443 | "lib64/libdrm.so" |
| 444 | "lib64/libdrmutils.so" |
| 445 | "lib64/libgpu_tonemapper.so" |
| 446 | "lib64/libgralloccore.so" |
| 447 | "lib64/libgrallocutils.so" |
| 448 | "lib64/libqdutils.so" |
| 449 | "lib64/libqservice.so" |
| 450 | "lib64/libdisplaydebug.so" |
| 451 | "lib64/libhistogram.so" |
| 452 | "lib/libdrm.so" |
| 453 | "lib/libdrmutils.so" |
| 454 | "lib/libgpu_tonemapper.so" |
| 455 | "lib/libgralloccore.so" |
| 456 | "lib/libgrallocutils.so" |
| 457 | "lib/libqdutils.so" |
| 458 | "lib/libqservice.so" |
| 459 | "lib/libdisplaydebug.so" |
| 460 | "lib/libhistogram.so" |
| 461 | "bin/irisConfig" |
| 462 | "etc/irissoft_o.fw" |
| 463 | "etc/irissoft_t.fw" |
| 464 | "lib/libirisService.so" |
| 465 | "lib/libpwiriscalibrate.so" |
| 466 | "lib/libpwirissoft.so" |
| 467 | "lib/libpwsnapdragoncolor.so" |
| 468 | "lib/libpwsoftirisPCS.so" |
| 469 | "lib64/libirisService.so" |
| 470 | "lib64/libpwiriscalibrate.so" |
| 471 | "lib64/libpwirissoft.so" |
| 472 | "lib64/libpwsnapdragoncolor.so" |
| 473 | "lib64/libpwsoftirisPCS.so" |
| 474 | "lib/vendor.pixelworks.hardware.display@1.0.so" |
| 475 | "lib64/vendor.pixelworks.hardware.display@1.0.so" |
| 476 | "lib/vendor.qti.hardware.display.allocator@1.0.so" |
| 477 | "lib/vendor.qti.hardware.display.allocator@3.0.so" |
| 478 | "lib/vendor.qti.hardware.display.mapper@1.0.so" |
| 479 | "lib/vendor.qti.hardware.display.mapper@1.1.so" |
| 480 | "lib/vendor.qti.hardware.display.mapper@2.0.so" |
| 481 | "lib/vendor.qti.hardware.display.mapper@3.0.so" |
| 482 | "lib/vendor.qti.hardware.display.mapper@4.0.so" |
| 483 | "lib/vendor.qti.hardware.display.mapperextensions@1.0.so" |
| 484 | "lib/vendor.qti.hardware.display.mapperextensions@1.1.so" |
| 485 | "lib64/vendor.qti.hardware.display.allocator@1.0.so" |
| 486 | "lib64/vendor.qti.hardware.display.allocator@3.0.so" |
| 487 | "lib64/vendor.qti.hardware.display.allocator@4.0.so" |
| 488 | "lib64/vendor.qti.hardware.display.mapper@1.0.so" |
| 489 | "lib64/vendor.qti.hardware.display.mapper@1.1.so" |
| 490 | "lib64/vendor.qti.hardware.display.mapper@2.0.so" |
| 491 | "lib64/vendor.qti.hardware.display.mapper@3.0.so" |
| 492 | "lib64/vendor.qti.hardware.display.mapper@4.0.so" |
| 493 | "lib64/vendor.qti.hardware.display.mapperextensions@1.0.so" |
| 494 | "lib64/vendor.qti.hardware.display.mapperextensions@1.1.so" |
| 495 | "lib64/libsdedrm.so" |
| 496 | "lib64/libsdmcore.so" |
| 497 | "lib64/libsdmutils.so" |
| 498 | "lib/libsdedrm.so" |
| 499 | "lib/libsdmcore.so" |
| 500 | "lib/libsdmutils.so" |
micky387 | b9e88d9 | 2022-10-27 12:12:50 +0200 | [diff] [blame] | 501 | |
micky387 | a0f9db2 | 2023-11-27 17:55:28 +0100 | [diff] [blame] | 502 | # DRM |
| 503 | "bin/hw/android.hardware.drm@1.3-service.clearkey" |
| 504 | "etc/init/android.hardware.drm@1.3-service.clearkey.rc" |
| 505 | "etc/vintf/manifest/manifest_android.hardware.drm@1.3-service.clearkey.xml" |
| 506 | |
micky387 | 33ff3eb | 2023-12-10 13:26:54 +0100 | [diff] [blame] | 507 | # Fingerprint |
| 508 | "bin/hw/android.hardware.biometrics.fingerprint@2.1-service" |
| 509 | "etc/init/android.hardware.biometrics.fingerprint@2.1-service.rc" |
| 510 | "etc/vintf/manifest/android.hardware.biometrics.fingerprint@2.1-service.xml" |
| 511 | |
micky387 | b9e88d9 | 2022-10-27 12:12:50 +0200 | [diff] [blame] | 512 | # Health |
| 513 | "bin/hw/android.hardware.health@2.1-service" |
| 514 | "etc/init/android.hardware.health@2.1-service.rc" |
| 515 | "etc/vintf/manifest/android.hardware.health@2.1.xml" |
| 516 | "lib/hw/android.hardware.health@2.0-impl-2.1.so" |
| 517 | "lib64/hw/android.hardware.health@2.0-impl-2.1.so" |
| 518 | |
| 519 | # Init Scripts |
| 520 | "bin/init.asus.check_asdf.sh" |
| 521 | "bin/init.asus.check_last.sh" |
| 522 | "bin/init.asus.checkdevcfg.sh" |
micky387 | a656ca9 | 2023-12-04 11:50:43 +0100 | [diff] [blame] | 523 | "bin/init.class_main.sh" |
| 524 | "bin/init.qcom.early_boot.sh" |
| 525 | "bin/init.qcom.post_boot.sh" |
| 526 | "bin/init.qcom.sh" |
micky387 | b9e88d9 | 2022-10-27 12:12:50 +0200 | [diff] [blame] | 527 | "etc/init/init.asus.rc" |
| 528 | "etc/init/hw/init.asus.debugtool.rc" |
| 529 | "etc/init/hw/init.qcom.rc" |
| 530 | "etc/init/hw/init.target.rc" |
| 531 | |
| 532 | # Launcher |
| 533 | "etc/workspace_grid_setting.xml" |
| 534 | "etc/CN/ASUS/Launcher/default_workspace/default_allapp.xml" |
| 535 | "etc/CN/ASUS/Launcher/default_workspace/phone_workspace.xml" |
| 536 | "etc/CN/ASUS/Launcher/default_workspace/phone_workspace_single.xml" |
| 537 | "etc/EU/ASUS/Launcher/default_workspace/default_allapp.xml" |
| 538 | "etc/EU/ASUS/Launcher/default_workspace/phone_workspace.xml" |
| 539 | "etc/Generic/Launcher/default_workspace/default_allapp.xml" |
| 540 | "etc/Generic/Launcher/default_workspace/phone_workspace.xml" |
| 541 | "etc/ID/ASUS/Launcher/default_workspace/default_allapp.xml" |
| 542 | "etc/ID/ASUS/Launcher/default_workspace/phone_workspace.xml" |
| 543 | "etc/JP/ACJ/Launcher/default_workspace/default_allapp.xml" |
| 544 | "etc/JP/ACJ/Launcher/default_workspace/phone_workspace.xml" |
| 545 | "etc/JP/ASUS/Launcher/default_workspace/default_allapp.xml" |
| 546 | "etc/JP/ASUS/Launcher/default_workspace/phone_workspace.xml" |
| 547 | "etc/RU/ASUS/Launcher/default_workspace/default_allapp.xml" |
| 548 | "etc/RU/ASUS/Launcher/default_workspace/phone_workspace.xml" |
| 549 | "etc/TW/APTG/Launcher/default_workspace/default_allapp.xml" |
| 550 | "etc/TW/APTG/Launcher/default_workspace/phone_workspace.xml" |
| 551 | "etc/TW/ASUS/Launcher/default_workspace/default_allapp.xml" |
| 552 | "etc/TW/ASUS/Launcher/default_workspace/phone_workspace.xml" |
| 553 | "etc/US/ASUS/Launcher/default_workspace/default_allapp.xml" |
| 554 | "etc/US/ASUS/Launcher/default_workspace/phone_workspace.xml" |
| 555 | "etc/WW/ASUS/Launcher/default_workspace/default_allapp.xml" |
| 556 | "etc/WW/ASUS/Launcher/default_workspace/phone_workspace.xml" |
| 557 | |
| 558 | # Logs |
| 559 | "bin/init.asus.checkdatalog.sh" |
| 560 | "bin/init.asus.checklogsize.sh" |
| 561 | "bin/init.asus.kernelmessage.sh" |
| 562 | |
| 563 | # Manifest |
| 564 | "etc/vintf/manifest.xml" |
| 565 | "etc/vintf/manifest/manifest.xml" |
| 566 | |
| 567 | # Media |
| 568 | "bin/hw/android.hardware.media.omx@1.0-service" |
| 569 | "etc/init/android.hardware.media.omx@1.0-service.rc" |
| 570 | "lib/libstagefright_bufferpool@2.0.1.so" |
| 571 | "lib/libstagefright_soft_aacdec.so" |
| 572 | "lib/libstagefright_soft_aacenc.so" |
| 573 | "lib/libstagefright_soft_amrdec.so" |
| 574 | "lib/libstagefright_soft_amrnbenc.so" |
| 575 | "lib/libstagefright_soft_amrwbenc.so" |
| 576 | "lib/libstagefright_soft_avcdec.so" |
| 577 | "lib/libstagefright_soft_avcenc.so" |
| 578 | "lib/libstagefright_soft_flacdec.so" |
| 579 | "lib/libstagefright_soft_flacenc.so" |
| 580 | "lib/libstagefright_soft_g711dec.so" |
| 581 | "lib/libstagefright_soft_gsmdec.so" |
| 582 | "lib/libstagefright_soft_hevcdec.so" |
| 583 | "lib/libstagefright_soft_mp3dec.so" |
| 584 | "lib/libstagefright_soft_mpeg2dec.so" |
| 585 | "lib/libstagefright_soft_mpeg4dec.so" |
| 586 | "lib/libstagefright_soft_mpeg4enc.so" |
| 587 | "lib/libstagefright_soft_opusdec.so" |
| 588 | "lib/libstagefright_soft_rawdec.so" |
| 589 | "lib/libstagefright_soft_vorbisdec.so" |
| 590 | "lib/libstagefright_soft_vpxdec.so" |
| 591 | "lib/libstagefright_soft_vpxenc.so" |
| 592 | "lib/libstagefright_softomx.so" |
| 593 | "lib/libstagefright_softomx_plugin.so" |
| 594 | "lib64/libstagefright_bufferpool@2.0.1.so" |
| 595 | "lib64/libstagefright_softomx.so" |
| 596 | "lib/vndk/libstagefright_foundation.so" |
| 597 | "lib/vndk/libstagefright_omx.so" |
| 598 | |
| 599 | # Modules |
micky387 | fe65201 | 2022-10-27 18:44:35 +0200 | [diff] [blame] | 600 | "lib/modules/audio_adsp_loader.ko" |
| 601 | "lib/modules/audio_apr.ko" |
| 602 | "lib/modules/audio_bolero_cdc.ko" |
| 603 | "lib/modules/audio_hdmi.ko" |
| 604 | "lib/modules/audio_machine_kona.ko" |
| 605 | "lib/modules/audio_mbhc.ko" |
| 606 | "lib/modules/audio_native.ko" |
| 607 | "lib/modules/audio_pinctrl_lpi.ko" |
| 608 | "lib/modules/audio_pinctrl_wcd.ko" |
| 609 | "lib/modules/audio_platform.ko" |
| 610 | "lib/modules/audio_q6.ko" |
| 611 | "lib/modules/audio_q6_notifier.ko" |
| 612 | "lib/modules/audio_q6_pdr.ko" |
| 613 | "lib/modules/audio_rx_macro.ko" |
| 614 | "lib/modules/audio_snd_event.ko" |
| 615 | "lib/modules/audio_stub.ko" |
| 616 | "lib/modules/audio_swr.ko" |
| 617 | "lib/modules/audio_swr_ctrl.ko" |
| 618 | "lib/modules/audio_tfa9874.ko" |
| 619 | "lib/modules/audio_tx_macro.ko" |
| 620 | "lib/modules/audio_usf.ko" |
| 621 | "lib/modules/audio_va_macro.ko" |
| 622 | "lib/modules/audio_wcd938x.ko" |
| 623 | "lib/modules/audio_wcd938x_slave.ko" |
| 624 | "lib/modules/audio_wcd9xxx.ko" |
| 625 | "lib/modules/audio_wcd_core.ko" |
| 626 | "lib/modules/audio_wsa_macro.ko" |
| 627 | "lib/modules/gspca_main.ko" |
| 628 | "lib/modules/lcd.ko" |
| 629 | "lib/modules/llcc_perfmon.ko" |
| 630 | "lib/modules/modules.alias" |
| 631 | "lib/modules/modules.dep" |
| 632 | "lib/modules/modules.load" |
| 633 | "lib/modules/modules.softdep" |
| 634 | "lib/modules/mpq-adapter.ko" |
| 635 | "lib/modules/mpq-dmx-hw-plugin.ko" |
| 636 | "lib/modules/qca_cld3_qca6390.ko" |
| 637 | "lib/modules/qca_cld3_qca6490.ko" |
| 638 | "lib/modules/rdbg.ko" |
| 639 | "lib/modules/rmnet_perf.ko" |
| 640 | "lib/modules/rmnet_shs.ko" |
| 641 | "lib/modules/texfat.ko" |
| 642 | "lib/modules/tntfs.ko" |
micky387 | b9e88d9 | 2022-10-27 12:12:50 +0200 | [diff] [blame] | 643 | |
| 644 | # Other services |
| 645 | "ueventd.rc" |
| 646 | "bin/asus_osinfo" |
| 647 | "bin/hw/android.hardware.atrace@1.0-service" |
| 648 | "etc/init/android.hardware.atrace@1.0-service.rc" |
| 649 | "etc/vintf/manifest/android.hardware.atrace@1.0-service.xml" |
| 650 | "bin/netutild" |
| 651 | "etc/init/netutild.rc" |
| 652 | "bin/hw/vendor.asus.wifi.netutil@1.0-service" |
| 653 | "etc/init/vendor.asus.wifi.netutil@1.0-service.rc" |
| 654 | "lib64/vendor.asus.wifi.netutil@1.0.so" |
| 655 | "bin/hw/vendor.ims.glovemode@1.0-service" |
| 656 | "etc/init/vendor.ims.glovemode@1.0-service.rc" |
| 657 | "lib64/vendor.ims.glovemode@1.0.so" |
| 658 | "bin/hw/vendor.ims.zenmotion@1.0-service" |
| 659 | "etc/init/vendor.ims.zenmotion@1.0-service.rc" |
| 660 | "lib64/vendor.ims.zenmotion@1.0.so" |
| 661 | "bin/hw/vendor.ims.twinviewdock@1.0-service" |
| 662 | "etc/init/vendor.ims.twinviewdock@1.0-service.rc" |
| 663 | "lib64/vendor.ims.twinviewdock@1.0.so" |
| 664 | "bin/hw/vendor.ims.wifiantennamode@1.0-service" |
| 665 | "etc/init/vendor.ims.wifiantennamode@1.0-service.rc" |
| 666 | "lib64/vendor.ims.wifiantennamode@1.0.so" |
| 667 | "etc/init/vendor_flash_recovery.rc" |
| 668 | "etc/init/vndservicemanager.rc" |
| 669 | "bin/vndservice" |
| 670 | "bin/vndservicemanager" |
| 671 | "etc/ftm_test_config" |
| 672 | "etc/ftm_test_config_qrd" |
| 673 | "lib/libhidltransport.so" |
| 674 | "lib64/libhidltransport.so" |
| 675 | "lib/libhwbinder.so" |
| 676 | "lib64/libhwbinder.so" |
| 677 | "lib/libavservices_minijail.so" |
| 678 | "lib64/libavservices_minijail.so" |
| 679 | "lib/libavservices_minijail_vendor.so" |
| 680 | "etc/init/boringssl_self_test.rc" |
| 681 | "app/CACertService/oat/arm64/CACertService.odex" |
| 682 | "app/CACertService/oat/arm64/CACertService.vdex" |
| 683 | "app/CneApp/oat/arm64/CneApp.odex" |
| 684 | "app/CneApp/oat/arm64/CneApp.vdex" |
| 685 | "app/IWlanService/oat/arm64/IWlanService.odex" |
| 686 | "app/IWlanService/oat/arm64/IWlanService.vdex" |
| 687 | "app/TimeService/oat/arm64/TimeService.odex" |
| 688 | "app/TimeService/oat/arm64/TimeService.vdex" |
| 689 | "app/ifaa_service/oat/arm64/ifaa_service.odex" |
| 690 | "app/ifaa_service/oat/arm64/ifaa_service.vdex" |
| 691 | "bin/hw/vendor.ims.airtrigger@1.2-service" |
| 692 | "etc/init/vendor.ims.airtrigger@1.2-service.rc" |
| 693 | "lib64/vendor.ims.airtrigger@1.0.so" |
| 694 | "lib64/vendor.ims.airtrigger@1.1.so" |
| 695 | "lib64/vendor.ims.airtrigger@1.2.so" |
micky387 | 4ca06d4 | 2022-12-26 15:50:52 +0100 | [diff] [blame] | 696 | "lib/vendor.qti.hardware.perf@2.0.so" |
| 697 | "lib/vendor.qti.hardware.perf@2.1.so" |
| 698 | "lib/vendor.qti.hardware.perf@2.2.so" |
| 699 | "lib64/vendor.qti.hardware.perf@2.0.so" |
| 700 | "lib64/vendor.qti.hardware.perf@2.1.so" |
| 701 | "lib64/vendor.qti.hardware.perf@2.2.so" |
micky387 | b9e88d9 | 2022-10-27 12:12:50 +0200 | [diff] [blame] | 702 | |
| 703 | # Overlays |
| 704 | "overlay/FrameworksResTarget.apk" |
| 705 | "overlay/WifiResTarget.apk" |
| 706 | |
| 707 | # rfs |
| 708 | "rfs/apq/gnss/hlos" |
| 709 | "rfs/apq/gnss/ramdumps" |
| 710 | "rfs/apq/gnss/readonly/firmware" |
| 711 | "rfs/apq/gnss/readonly/vendor/firmware" |
| 712 | "rfs/apq/gnss/readwrite" |
| 713 | "rfs/apq/gnss/shared" |
| 714 | "rfs/mdm/adsp/hlos" |
| 715 | "rfs/mdm/adsp/ramdumps" |
| 716 | "rfs/mdm/adsp/readonly/firmware" |
| 717 | "rfs/mdm/adsp/readonly/vendor/firmware" |
| 718 | "rfs/mdm/adsp/readwrite" |
| 719 | "rfs/mdm/adsp/shared" |
| 720 | "rfs/mdm/cdsp/hlos" |
| 721 | "rfs/mdm/cdsp/ramdumps" |
| 722 | "rfs/mdm/cdsp/readonly/firmware" |
| 723 | "rfs/mdm/cdsp/readwrite" |
| 724 | "rfs/mdm/cdsp/shared" |
| 725 | "rfs/mdm/mpss/hlos" |
| 726 | "rfs/mdm/mpss/ramdumps" |
| 727 | "rfs/mdm/mpss/readonly/firmware" |
| 728 | "rfs/mdm/mpss/readonly/vendor/firmware" |
| 729 | "rfs/mdm/mpss/readwrite" |
| 730 | "rfs/mdm/mpss/shared" |
| 731 | "rfs/mdm/slpi/hlos" |
| 732 | "rfs/mdm/slpi/ramdumps" |
| 733 | "rfs/mdm/slpi/readonly/firmware" |
| 734 | "rfs/mdm/slpi/readwrite" |
| 735 | "rfs/mdm/slpi/shared" |
| 736 | "rfs/mdm/tn/hlos" |
| 737 | "rfs/mdm/tn/ramdumps" |
| 738 | "rfs/mdm/tn/readonly/firmware" |
| 739 | "rfs/mdm/tn/readwrite" |
| 740 | "rfs/mdm/tn/shared" |
| 741 | "rfs/msm/adsp/hlos" |
| 742 | "rfs/msm/adsp/ramdumps" |
| 743 | "rfs/msm/adsp/readonly/firmware" |
| 744 | "rfs/msm/adsp/readonly/vendor/firmware" |
| 745 | "rfs/msm/adsp/readwrite" |
| 746 | "rfs/msm/adsp/shared" |
| 747 | "rfs/msm/cdsp/hlos" |
| 748 | "rfs/msm/cdsp/ramdumps" |
| 749 | "rfs/msm/cdsp/readonly/firmware" |
| 750 | "rfs/msm/cdsp/readonly/vendor/firmware" |
| 751 | "rfs/msm/cdsp/readwrite" |
| 752 | "rfs/msm/cdsp/shared" |
| 753 | "rfs/msm/mpss/hlos" |
| 754 | "rfs/msm/mpss/ramdumps" |
| 755 | "rfs/msm/mpss/readonly/firmware" |
| 756 | "rfs/msm/mpss/readonly/vendor/firmware" |
| 757 | "rfs/msm/mpss/readwrite" |
| 758 | "rfs/msm/mpss/shared" |
| 759 | "rfs/msm/slpi/hlos" |
| 760 | "rfs/msm/slpi/ramdumps" |
| 761 | "rfs/msm/slpi/readonly/firmware" |
| 762 | "rfs/msm/slpi/readonly/vendor/firmware" |
| 763 | "rfs/msm/slpi/readwrite" |
| 764 | "rfs/msm/slpi/shared" |
| 765 | |
| 766 | # Sepolicy |
| 767 | "etc/selinux/plat_pub_versioned.cil" |
| 768 | "etc/selinux/plat_sepolicy_vers.txt" |
| 769 | "etc/selinux/precompiled_sepolicy" |
| 770 | "etc/selinux/precompiled_sepolicy.plat_sepolicy_and_mapping.sha256" |
| 771 | "etc/selinux/precompiled_sepolicy.product_sepolicy_and_mapping.sha256" |
| 772 | "etc/selinux/precompiled_sepolicy.system_ext_sepolicy_and_mapping.sha256" |
| 773 | "etc/selinux/selinux_denial_metadata" |
| 774 | "etc/selinux/vendor_file_contexts" |
| 775 | "etc/selinux/vendor_hwservice_contexts" |
| 776 | "etc/selinux/vendor_mac_permissions.xml" |
| 777 | "etc/selinux/vendor_property_contexts" |
| 778 | "etc/selinux/vendor_seapp_contexts" |
| 779 | "etc/selinux/vendor_sepolicy.cil" |
| 780 | "etc/selinux/vendor_service_contexts" |
| 781 | "etc/selinux/vndservice_contexts" |
| 782 | |
| 783 | # Symlink |
| 784 | "asusfw" |
| 785 | "factory" |
| 786 | "odm" |
| 787 | |
micky387 | d850896 | 2022-10-27 16:46:50 +0200 | [diff] [blame] | 788 | # Vibrator |
| 789 | "etc/init/vendor.qti.hardware.vibrator.service.rc" |
| 790 | "etc/vintf/manifest/vendor.qti.hardware.vibrator.service.xml" |
| 791 | "bin/hw/vendor.qti.hardware.vibrator.service" |
| 792 | "lib64/vendor.qti.hardware.vibrator.impl.so" |
| 793 | |
micky387 | b9e88d9 | 2022-10-27 12:12:50 +0200 | [diff] [blame] | 794 | # Wifi |
| 795 | "bin/wifilearner" |
| 796 | "bin/hw/android.hardware.wifi@1.0-service" |
| 797 | "etc/init/android.hardware.wifi@1.0-service.rc" |
| 798 | "etc/vintf/manifest/android.hardware.wifi@1.0-service.xml" |
| 799 | "etc/init/vendor.qti.hardware.wifi.wifilearner@1.0-service.rc" |
| 800 | "lib64/vendor.qti.hardware.wifi.wifilearner@1.0.so" |
| 801 | "bin/hostapd_cli" |
| 802 | "bin/hw/hostapd" |
| 803 | "etc/hostapd/hostapd.accept" |
| 804 | "etc/hostapd/hostapd.deny" |
| 805 | "etc/hostapd/hostapd_default.conf" |
| 806 | "etc/init/hostapd.android.rc" |
| 807 | "bin/fstman" |
| 808 | "etc/init/vendor.qti.hardware.fstman@1.0-service.rc" |
| 809 | "etc/wifi/fstman.ini" |
| 810 | "lib64/vendor.qti.hardware.fstman@1.0.so" |
| 811 | "etc/wifi/aoa_cldb_falcon.bin" |
| 812 | "etc/wifi/aoa_cldb_swl14.bin" |
| 813 | "etc/wifi/icm.conf" |
| 814 | "etc/wifi/wpa_supplicant_overlay.conf" |
| 815 | "bin/hw/wpa_supplicant" |
| 816 | "lib64/libkeystore-engine-wifi-hidl.so" |
| 817 | "lib64/libkeystore-wifi-hidl.so" |
| 818 | "lib/libwifi-hal-ctrl.so" |
| 819 | "lib/libwifi-hal-qcom.so" |
| 820 | "lib/libwpa_client.so" |
| 821 | "lib64/libwpa_client.so" |
| 822 | "lib64/libwifi-hal.so" |
| 823 | "lib64/libwifi-hal-ctrl.so" |
| 824 | "lib64/libwifi-hal-qcom.so" |
| 825 | |
Aaron Kling | 9a2fb3a | 2023-11-01 12:04:10 +0100 | [diff] [blame] | 826 | # WifiDisplay |
| 827 | "bin/wfdhdcphalservice" |
| 828 | "bin/wfdvndservice" |
| 829 | "bin/wifidisplayhalservice" |
| 830 | "etc/ArmHDCP_QTI_Android.cfg" |
| 831 | "etc/init/android.hardware.drm@1.1-service.wfdhdcp.rc" |
| 832 | "etc/init/com.qualcomm.qti.wifidisplayhal@1.0-service.rc" |
| 833 | "etc/init/wfdvndservice.rc" |
| 834 | "etc/seccomp_policy/wfdhdcphalservice.policy" |
| 835 | "etc/seccomp_policy/wfdvndservice.policy" |
| 836 | "etc/seccomp_policy/wifidisplayhalservice.policy" |
| 837 | "etc/wfdconfig.xml" |
| 838 | "etc/wfdconfig_720.xml" |
| 839 | "etc/wfdconfig_MI.xml" |
| 840 | "lib/libDxHdcp.so" |
| 841 | "lib/libFileMux_proprietary.so" |
| 842 | "lib/libmm-hdcpmgr.so" |
| 843 | "lib/libmmrtpdecoder_proprietary.so" |
| 844 | "lib/libmmrtpencoder_proprietary.so" |
| 845 | "lib/libwfdaac_vendor.so" |
| 846 | "lib/libwfdcodecv4l2_proprietary.so" |
| 847 | "lib/libwfdcommonutils_proprietary.so" |
| 848 | "lib/libwfdconfigutils_proprietary.so" |
| 849 | "lib/libwfddisplayconfig_proprietary.so" |
| 850 | "lib/libwfdhdcpcp.so" |
| 851 | "lib/libwfdhdcpservice_proprietary.so" |
| 852 | "lib/libwfdmminterface_proprietary.so" |
| 853 | "lib/libwfdmmservice_proprietary.so" |
| 854 | "lib/libwfdmmsrc_proprietary.so" |
| 855 | "lib/libwfdmodulehdcpsession.so" |
| 856 | "lib/libwfdrtsp_proprietary.so" |
| 857 | "lib/libwfdsessionmodule.so" |
| 858 | "lib/libwfdsourcesession_proprietary.so" |
| 859 | "lib/libwfdsourcesm_proprietary.so" |
| 860 | "lib/libwfduibcinterface_proprietary.so" |
| 861 | "lib/libwfduibcsink_proprietary.so" |
| 862 | "lib/libwfduibcsinkinterface_proprietary.so" |
| 863 | "lib/libwfduibcsrc_proprietary.so" |
| 864 | "lib/libwfduibcsrcinterface_proprietary.so" |
| 865 | "lib/libwfdutils_proprietary.so" |
| 866 | "lib/vendor.qti.hardware.wifidisplaysession@1.0.so" |
| 867 | "lib/vendor.qti.hardware.wifidisplaysessionl@1.0-halimpl.so" |
| 868 | "lib64/libmm-hdcpmgr.so" |
| 869 | "lib64/libwfddisplayconfig_proprietary.so" |
| 870 | "lib64/libwfdhdcpcp.so" |
| 871 | "lib64/vendor.qti.hardware.wifidisplaysession@1.0.so" |
micky387 | b9e88d9 | 2022-10-27 12:12:50 +0200 | [diff] [blame] | 872 | ) |
| 873 | ALL_SKIP_FILES=("${VENDOR_SKIP_FILES_COMMON[@]}" "${VENDOR_SKIP_FILES_DEVICE[@]}") |
| 874 | |
| 875 | generate_prop_list_from_image "$1" "$2" ALL_SKIP_FILES |
| 876 | |
| 877 | # Fixups |
| 878 | _output_file=$2 |
| 879 | function presign() { |
| 880 | sed -i "s|vendor/$1$|vendor/$1;PRESIGNED|g" $_output_file |
| 881 | } |
| 882 | function as_module() { |
| 883 | sed -i "s|vendor/$1$|-vendor/$1|g" $_output_file |
| 884 | } |
| 885 | |
| 886 | presign "app/com.qualcomm.qti.gpudrivers.lahaina.api30/com.qualcomm.qti.gpudrivers.lahaina.api30.apk" |
| 887 | |
micky387 | b9e88d9 | 2022-10-27 12:12:50 +0200 | [diff] [blame] | 888 | as_module "etc/vintf/manifest/android.hardware.boot@1.1.xml" |
micky387 | b9e88d9 | 2022-10-27 12:12:50 +0200 | [diff] [blame] | 889 | as_module "etc/vintf/manifest/android.hardware.gnss@2.1-service-qti.xml" |
micky387 | b9e88d9 | 2022-10-27 12:12:50 +0200 | [diff] [blame] | 890 | as_module "etc/vintf/manifest/android.hardware.lights-qti.xml" |
| 891 | as_module "etc/vintf/manifest/android.hardware.neuralnetworks@1.3-service-qti-hta.xml" |
| 892 | as_module "etc/vintf/manifest/android.hardware.neuralnetworks@1.3-service-qti.xml" |
| 893 | as_module "etc/vintf/manifest/android.hardware.sensors@2.0-multihal.xml" |
| 894 | as_module "etc/vintf/manifest/android.hardware.thermal@2.0-service.qti.xml" |
| 895 | as_module "etc/vintf/manifest/android.hardware.usb@1.2-service.xml" |
| 896 | as_module "etc/vintf/manifest/android.hardware.wifi.hostapd.xml" |
| 897 | as_module "etc/vintf/manifest/c2_manifest_vendor.xml" |
micky387 | b9e88d9 | 2022-10-27 12:12:50 +0200 | [diff] [blame] | 898 | as_module "etc/vintf/manifest/manifest_android.hardware.drm@1.3-service.widevine.xml" |
| 899 | as_module "etc/vintf/manifest/power.xml" |
| 900 | as_module "etc/vintf/manifest/vendor.goodix.hardware.biometrics.fingerprint.xml" |
| 901 | as_module "etc/vintf/manifest/vendor.qti.gnss@4.0-service.xml" |
micky387 | b9e88d9 | 2022-10-27 12:12:50 +0200 | [diff] [blame] | 902 | as_module "etc/vintf/manifest/vendor.qti.hardware.servicetracker@1.2-service.xml" |
| 903 | as_module "etc/vintf/manifest/vendor.qti.hardware.vibrator.service.xml" |
| 904 | |
micky387 | 9b5769a | 2023-01-26 18:14:21 +0100 | [diff] [blame] | 905 | as_module "lib/libthermalclient.so" |
| 906 | as_module "lib64/libthermalclient.so" |
| 907 | |