From: Xue LiSong Date: Mon, 26 Nov 2018 13:50:04 +0000 (+0800) Subject: decrypt success X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=406f7506d12c43e4837f24e65b699b75fc6ed9b6;p=GitHub%2Fmoto-9609%2Ftwrp_device_motorola_troika.git decrypt success --- diff --git a/BoardConfig.mk b/BoardConfig.mk index 8611ea0..482fa0e 100644 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -90,14 +90,16 @@ TW_INPUT_BLACKLIST := "hbtp_vm" TW_MAX_BRIGHTNESS := 1023 TW_THEME := portrait_hdpi TARGET_RECOVERY_DEVICE_MODULES += android.hardware.boot@1.0 -TW_RECOVERY_ADDITIONAL_RELINK_FILES := ${OUT}/system/lib64/android.hardware.boot@1.0.so +#TW_RECOVERY_ADDITIONAL_RELINK_FILES := ${OUT}/system/lib64/android.hardware.boot@1.0.so TARGET_RECOVERY_PIXEL_FORMAT := BGRA_8888 TW_NO_SCREEN_BLANK := true # Encryption PLATFORM_SECURITY_PATCH := 2025-12-31 TW_INCLUDE_CRYPTO := true +TW_INCLUDE_CRYPTO_FBE := true # Extras BOARD_SUPPRESS_SECURE_ERASE := true TW_USE_LEDS_HAPTICS := true +#TW_USE_TOOLBOX := true diff --git a/omni_fajita.mk b/omni_fajita.mk index 9734a88..4546922 100644 --- a/omni_fajita.mk +++ b/omni_fajita.mk @@ -29,7 +29,7 @@ $(call inherit-product, device/oneplus/fajita/device.mk) PRODUCT_DEVICE := fajita PRODUCT_NAME := omni_fajita PRODUCT_BRAND := OnePlus -PRODUCT_MODEL := OnePlus A6013 +PRODUCT_MODEL := OnePlus A6010 PRODUCT_MANUFACTURER := OnePlus PRODUCT_BUILD_PROP_OVERRIDES += \ diff --git a/recovery/root/etc/twrp.fstab b/recovery/root/etc/twrp.fstab index 676a144..52b296b 100644 --- a/recovery/root/etc/twrp.fstab +++ b/recovery/root/etc/twrp.fstab @@ -4,7 +4,7 @@ /system_image emmc /dev/block/bootdevice/by-name/system flags=slotselect /vendor ext4 /dev/block/bootdevice/by-name/vendor flags=slotselect;display="Vendor";backup=1 /vendor_image emmc /dev/block/bootdevice/by-name/vendor flags=slotselect -/data ext4 /dev/block/bootdevice/by-name/userdata flags=encryptable=footer +/data ext4 /dev/block/bootdevice/by-name/userdata flags=fileencryption=ice:aes-256-cts /firmware vfat /dev/block/bootdevice/by-name/modem flags=slotselect;display="Firmware";mounttodecrypt;fsflags=ro /misc emmc /dev/block/bootdevice/by-name/misc /modem emmc /dev/block/bootdevice/by-name/modem flags=slotselect;backup=1;display="Modem" diff --git a/recovery/root/init.recovery.qcom.rc b/recovery/root/init.recovery.qcom.rc index 8b504b8..a4c2c5d 100644 --- a/recovery/root/init.recovery.qcom.rc +++ b/recovery/root/init.recovery.qcom.rc @@ -89,7 +89,19 @@ service gatekeeper-1-0 /sbin/android.hardware.gatekeeper@1.0-service-qti disabled seclabel u:r:recovery:s0 -service keymaster-3-0 /sbin/android.hardware.keymaster@3.0-service-qti +service keymaster-4-0 /sbin/android.hardware.keymaster@4.0-service-qti + user root + group root + disabled + seclabel u:r:recovery:s0 + +service logd /sbin/logd + user root + group root + disabled + seclabel u:r:recovery:s0 + +service time_daemon /sbin/time_daemon user root group root disabled @@ -101,21 +113,27 @@ on boot write /sys/devices/platform/soc/c440000.qcom,spmi/spmi-0/spmi0-02/c440000.qcom,spmi:qcom,pmi8998@2:qcom,qpnp-smb2/power_supply/usb/otg_switch 1 on init + start logd start hwservicemanager start boot-1-0 start prepdecrypt + start time_daemon #setprop crypto.ready 1 on property:crypto.ready=0 stop sbinqseecomd - stop keymaster-3-0 + stop keymaster-4-0 stop gatekeeper-1-0 stop servicemanager on property:crypto.ready=1 start sbinqseecomd -on property:sys.listeners.registered=true - start keymaster-3-0 +on property:vendor.sys.listeners.registered=true + start keymaster-4-0 start gatekeeper-1-0 start servicemanager + restart time_daemon + +on property:sys.usb.config=mtp,adb + restart time_daemon diff --git a/recovery/root/sbin/[ b/recovery/root/sbin/[ new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/[ @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/[[ b/recovery/root/sbin/[[ new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/[[ @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/acpi b/recovery/root/sbin/acpi new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/acpi @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/adbd b/recovery/root/sbin/adbd new file mode 100755 index 0000000..15d8afd Binary files /dev/null and b/recovery/root/sbin/adbd differ diff --git a/recovery/root/sbin/adjtimex b/recovery/root/sbin/adjtimex new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/adjtimex @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/android.hardware.boot@1.0-service b/recovery/root/sbin/android.hardware.boot@1.0-service old mode 100644 new mode 100755 index 3478203..ee7321d Binary files a/recovery/root/sbin/android.hardware.boot@1.0-service and b/recovery/root/sbin/android.hardware.boot@1.0-service differ diff --git a/recovery/root/sbin/android.hardware.boot@1.0.so b/recovery/root/sbin/android.hardware.boot@1.0.so new file mode 100755 index 0000000..b106555 Binary files /dev/null and b/recovery/root/sbin/android.hardware.boot@1.0.so differ diff --git a/recovery/root/sbin/android.hardware.gatekeeper@1.0-service-qti b/recovery/root/sbin/android.hardware.gatekeeper@1.0-service-qti old mode 100644 new mode 100755 index 32ddad9..8a1b921 Binary files a/recovery/root/sbin/android.hardware.gatekeeper@1.0-service-qti and b/recovery/root/sbin/android.hardware.gatekeeper@1.0-service-qti differ diff --git a/recovery/root/sbin/android.hardware.keymaster@4.0-service-qti b/recovery/root/sbin/android.hardware.keymaster@4.0-service-qti new file mode 100755 index 0000000..484fd27 Binary files /dev/null and b/recovery/root/sbin/android.hardware.keymaster@4.0-service-qti differ diff --git a/recovery/root/sbin/android.hardware.weaver@1.0.so b/recovery/root/sbin/android.hardware.weaver@1.0.so new file mode 100755 index 0000000..3361968 Binary files /dev/null and b/recovery/root/sbin/android.hardware.weaver@1.0.so differ diff --git a/recovery/root/sbin/android.hidl.base@1.0.so b/recovery/root/sbin/android.hidl.base@1.0.so old mode 100644 new mode 100755 diff --git a/recovery/root/sbin/arp b/recovery/root/sbin/arp new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/arp @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/ash b/recovery/root/sbin/ash new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/ash @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/awk b/recovery/root/sbin/awk new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/awk @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/base64 b/recovery/root/sbin/base64 new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/base64 @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/basename b/recovery/root/sbin/basename new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/basename @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/bbconfig b/recovery/root/sbin/bbconfig new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/bbconfig @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/blkid b/recovery/root/sbin/blkid new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/blkid @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/blockdev b/recovery/root/sbin/blockdev new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/blockdev @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/brctl b/recovery/root/sbin/brctl new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/brctl @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/bunzip2 b/recovery/root/sbin/bunzip2 new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/bunzip2 @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/busybox b/recovery/root/sbin/busybox new file mode 100755 index 0000000..d13301c Binary files /dev/null and b/recovery/root/sbin/busybox differ diff --git a/recovery/root/sbin/bzcat b/recovery/root/sbin/bzcat new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/bzcat @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/bzip2 b/recovery/root/sbin/bzip2 new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/bzip2 @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/cal b/recovery/root/sbin/cal new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/cal @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/cat b/recovery/root/sbin/cat new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/cat @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/catv b/recovery/root/sbin/catv new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/catv @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/chattr b/recovery/root/sbin/chattr new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/chattr @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/chcon b/recovery/root/sbin/chcon new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/chcon @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/chgrp b/recovery/root/sbin/chgrp new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/chgrp @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/chmod b/recovery/root/sbin/chmod new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/chmod @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/chown b/recovery/root/sbin/chown new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/chown @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/chroot b/recovery/root/sbin/chroot new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/chroot @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/chvt b/recovery/root/sbin/chvt new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/chvt @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/cksum b/recovery/root/sbin/cksum new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/cksum @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/clear b/recovery/root/sbin/clear new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/clear @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/cmp b/recovery/root/sbin/cmp new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/cmp @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/comm b/recovery/root/sbin/comm new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/comm @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/cp b/recovery/root/sbin/cp new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/cp @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/cpio b/recovery/root/sbin/cpio new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/cpio @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/crash_dump64 b/recovery/root/sbin/crash_dump64 new file mode 100755 index 0000000..85bc303 Binary files /dev/null and b/recovery/root/sbin/crash_dump64 differ diff --git a/recovery/root/sbin/crond b/recovery/root/sbin/crond new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/crond @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/crontab b/recovery/root/sbin/crontab new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/crontab @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/cut b/recovery/root/sbin/cut new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/cut @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/date b/recovery/root/sbin/date new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/date @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/dc b/recovery/root/sbin/dc new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/dc @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/dd b/recovery/root/sbin/dd new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/dd @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/deallocvt b/recovery/root/sbin/deallocvt new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/deallocvt @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/depmod b/recovery/root/sbin/depmod new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/depmod @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/devmem b/recovery/root/sbin/devmem new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/devmem @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/df b/recovery/root/sbin/df new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/df @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/diff b/recovery/root/sbin/diff new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/diff @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/dirname b/recovery/root/sbin/dirname new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/dirname @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/dmesg b/recovery/root/sbin/dmesg new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/dmesg @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/dnsd b/recovery/root/sbin/dnsd new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/dnsd @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/dos2unix b/recovery/root/sbin/dos2unix new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/dos2unix @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/du b/recovery/root/sbin/du new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/du @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/echo b/recovery/root/sbin/echo new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/echo @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/ed b/recovery/root/sbin/ed new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/ed @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/egrep b/recovery/root/sbin/egrep new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/egrep @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/env b/recovery/root/sbin/env new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/env @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/expand b/recovery/root/sbin/expand new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/expand @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/expr b/recovery/root/sbin/expr new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/expr @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/fallocate b/recovery/root/sbin/fallocate new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/fallocate @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/false b/recovery/root/sbin/false new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/false @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/fbsplash b/recovery/root/sbin/fbsplash new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/fbsplash @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/fdisk b/recovery/root/sbin/fdisk new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/fdisk @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/fgconsole b/recovery/root/sbin/fgconsole new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/fgconsole @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/fgrep b/recovery/root/sbin/fgrep new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/fgrep @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/find b/recovery/root/sbin/find new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/find @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/findfs b/recovery/root/sbin/findfs new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/findfs @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/flash_lock b/recovery/root/sbin/flash_lock new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/flash_lock @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/flash_unlock b/recovery/root/sbin/flash_unlock new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/flash_unlock @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/flashcp b/recovery/root/sbin/flashcp new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/flashcp @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/flock b/recovery/root/sbin/flock new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/flock @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/fmt b/recovery/root/sbin/fmt new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/fmt @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/fold b/recovery/root/sbin/fold new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/fold @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/free b/recovery/root/sbin/free new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/free @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/freeramdisk b/recovery/root/sbin/freeramdisk new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/freeramdisk @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/fsfreeze b/recovery/root/sbin/fsfreeze new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/fsfreeze @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/fstrim b/recovery/root/sbin/fstrim new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/fstrim @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/fstype b/recovery/root/sbin/fstype new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/fstype @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/fsync b/recovery/root/sbin/fsync new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/fsync @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/ftpget b/recovery/root/sbin/ftpget new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/ftpget @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/ftpput b/recovery/root/sbin/ftpput new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/ftpput @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/fuser b/recovery/root/sbin/fuser new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/fuser @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/getenforce b/recovery/root/sbin/getenforce new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/getenforce @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/getevent b/recovery/root/sbin/getevent new file mode 120000 index 0000000..a7cf9a8 --- /dev/null +++ b/recovery/root/sbin/getevent @@ -0,0 +1 @@ +toolbox \ No newline at end of file diff --git a/recovery/root/sbin/getopt b/recovery/root/sbin/getopt new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/getopt @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/getprop b/recovery/root/sbin/getprop new file mode 120000 index 0000000..a7cf9a8 --- /dev/null +++ b/recovery/root/sbin/getprop @@ -0,0 +1 @@ +toolbox \ No newline at end of file diff --git a/recovery/root/sbin/getsebool b/recovery/root/sbin/getsebool new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/getsebool @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/grep b/recovery/root/sbin/grep new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/grep @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/groups b/recovery/root/sbin/groups new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/groups @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/gunzip b/recovery/root/sbin/gunzip new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/gunzip @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/gzip b/recovery/root/sbin/gzip new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/gzip @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/halt b/recovery/root/sbin/halt new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/halt @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/head b/recovery/root/sbin/head new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/head @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/help b/recovery/root/sbin/help new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/help @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/hexdump b/recovery/root/sbin/hexdump new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/hexdump @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/hostname b/recovery/root/sbin/hostname new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/hostname @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/hwclock b/recovery/root/sbin/hwclock new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/hwclock @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/id b/recovery/root/sbin/id new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/id @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/ifconfig b/recovery/root/sbin/ifconfig new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/ifconfig @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/inetd b/recovery/root/sbin/inetd new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/inetd @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/inotifyd b/recovery/root/sbin/inotifyd new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/inotifyd @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/insmod b/recovery/root/sbin/insmod new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/insmod @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/install b/recovery/root/sbin/install new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/install @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/ionice b/recovery/root/sbin/ionice new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/ionice @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/iorenice b/recovery/root/sbin/iorenice new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/iorenice @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/iostat b/recovery/root/sbin/iostat new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/iostat @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/iotop b/recovery/root/sbin/iotop new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/iotop @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/ip b/recovery/root/sbin/ip new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/ip @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/kill b/recovery/root/sbin/kill new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/kill @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/killall b/recovery/root/sbin/killall new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/killall @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/killall5 b/recovery/root/sbin/killall5 new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/killall5 @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/less b/recovery/root/sbin/less new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/less @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/libcap.so b/recovery/root/sbin/libcap.so new file mode 100755 index 0000000..8995e41 Binary files /dev/null and b/recovery/root/sbin/libcap.so differ diff --git a/recovery/root/sbin/libdsutils.so b/recovery/root/sbin/libdsutils.so new file mode 100755 index 0000000..1df6382 Binary files /dev/null and b/recovery/root/sbin/libdsutils.so differ diff --git a/recovery/root/sbin/libicuuc.so b/recovery/root/sbin/libicuuc.so old mode 100644 new mode 100755 diff --git a/recovery/root/sbin/libidl.so b/recovery/root/sbin/libidl.so new file mode 100755 index 0000000..b6b1f7a Binary files /dev/null and b/recovery/root/sbin/libidl.so differ diff --git a/recovery/root/sbin/libion.so b/recovery/root/sbin/libion.so new file mode 100755 index 0000000..5fde106 Binary files /dev/null and b/recovery/root/sbin/libion.so differ diff --git a/recovery/root/sbin/liblogcat.so b/recovery/root/sbin/liblogcat.so new file mode 100755 index 0000000..d0c8c2e Binary files /dev/null and b/recovery/root/sbin/liblogcat.so differ diff --git a/recovery/root/sbin/libmdmdetect.so b/recovery/root/sbin/libmdmdetect.so new file mode 100755 index 0000000..bf5bd16 Binary files /dev/null and b/recovery/root/sbin/libmdmdetect.so differ diff --git a/recovery/root/sbin/libminuitwrp.so b/recovery/root/sbin/libminuitwrp.so new file mode 100755 index 0000000..6857451 Binary files /dev/null and b/recovery/root/sbin/libminuitwrp.so differ diff --git a/recovery/root/sbin/libpcrecpp.so b/recovery/root/sbin/libpcrecpp.so new file mode 100755 index 0000000..51441a6 Binary files /dev/null and b/recovery/root/sbin/libpcrecpp.so differ diff --git a/recovery/root/sbin/libprocinfo.so b/recovery/root/sbin/libprocinfo.so new file mode 100755 index 0000000..51089da Binary files /dev/null and b/recovery/root/sbin/libprocinfo.so differ diff --git a/recovery/root/sbin/libqmi_cci.so b/recovery/root/sbin/libqmi_cci.so new file mode 100755 index 0000000..e3e7edb Binary files /dev/null and b/recovery/root/sbin/libqmi_cci.so differ diff --git a/recovery/root/sbin/libqmi_client_qmux.so b/recovery/root/sbin/libqmi_client_qmux.so new file mode 100755 index 0000000..1705cf7 Binary files /dev/null and b/recovery/root/sbin/libqmi_client_qmux.so differ diff --git a/recovery/root/sbin/libqmi_common_so.so b/recovery/root/sbin/libqmi_common_so.so new file mode 100755 index 0000000..87841e0 Binary files /dev/null and b/recovery/root/sbin/libqmi_common_so.so differ diff --git a/recovery/root/sbin/libqmi_encdec.so b/recovery/root/sbin/libqmi_encdec.so new file mode 100755 index 0000000..bc2797f Binary files /dev/null and b/recovery/root/sbin/libqmi_encdec.so differ diff --git a/recovery/root/sbin/libqmiservices.so b/recovery/root/sbin/libqmiservices.so new file mode 100755 index 0000000..42942f7 Binary files /dev/null and b/recovery/root/sbin/libqmiservices.so differ diff --git a/recovery/root/sbin/libsysutils.so b/recovery/root/sbin/libsysutils.so new file mode 100755 index 0000000..c26e554 Binary files /dev/null and b/recovery/root/sbin/libsysutils.so differ diff --git a/recovery/root/sbin/libxml2.so b/recovery/root/sbin/libxml2.so old mode 100644 new mode 100755 diff --git a/recovery/root/sbin/ln b/recovery/root/sbin/ln new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/ln @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/load_policy b/recovery/root/sbin/load_policy new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/load_policy @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/logcat b/recovery/root/sbin/logcat new file mode 100755 index 0000000..c72f7f4 Binary files /dev/null and b/recovery/root/sbin/logcat differ diff --git a/recovery/root/sbin/logd b/recovery/root/sbin/logd new file mode 100755 index 0000000..501be5b Binary files /dev/null and b/recovery/root/sbin/logd differ diff --git a/recovery/root/sbin/logname b/recovery/root/sbin/logname new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/logname @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/losetup b/recovery/root/sbin/losetup new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/losetup @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/ls b/recovery/root/sbin/ls new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/ls @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/lsattr b/recovery/root/sbin/lsattr new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/lsattr @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/lsmod b/recovery/root/sbin/lsmod new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/lsmod @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/lsof b/recovery/root/sbin/lsof new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/lsof @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/lspci b/recovery/root/sbin/lspci new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/lspci @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/lsusb b/recovery/root/sbin/lsusb new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/lsusb @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/lzcat b/recovery/root/sbin/lzcat new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/lzcat @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/lzma b/recovery/root/sbin/lzma new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/lzma @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/lzop b/recovery/root/sbin/lzop new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/lzop @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/lzopcat b/recovery/root/sbin/lzopcat new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/lzopcat @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/makedevs b/recovery/root/sbin/makedevs new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/makedevs @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/man b/recovery/root/sbin/man new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/man @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/matchpathcon b/recovery/root/sbin/matchpathcon new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/matchpathcon @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/md5sum b/recovery/root/sbin/md5sum new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/md5sum @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/mesg b/recovery/root/sbin/mesg new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/mesg @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/mkdir b/recovery/root/sbin/mkdir new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/mkdir @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/mkfifo b/recovery/root/sbin/mkfifo new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/mkfifo @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/mkfs.ext2 b/recovery/root/sbin/mkfs.ext2 new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/mkfs.ext2 @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/mknod b/recovery/root/sbin/mknod new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/mknod @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/mkswap b/recovery/root/sbin/mkswap new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/mkswap @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/mktemp b/recovery/root/sbin/mktemp new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/mktemp @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/modinfo b/recovery/root/sbin/modinfo new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/modinfo @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/modprobe b/recovery/root/sbin/modprobe new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/modprobe @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/more b/recovery/root/sbin/more new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/more @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/mount b/recovery/root/sbin/mount new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/mount @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/mountpoint b/recovery/root/sbin/mountpoint new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/mountpoint @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/mpstat b/recovery/root/sbin/mpstat new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/mpstat @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/mv b/recovery/root/sbin/mv new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/mv @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/nanddump b/recovery/root/sbin/nanddump new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/nanddump @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/nandwrite b/recovery/root/sbin/nandwrite new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/nandwrite @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/nbd-client b/recovery/root/sbin/nbd-client new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/nbd-client @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/nc b/recovery/root/sbin/nc new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/nc @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/netcat b/recovery/root/sbin/netcat new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/netcat @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/netstat b/recovery/root/sbin/netstat new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/netstat @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/newfs_msdos b/recovery/root/sbin/newfs_msdos new file mode 120000 index 0000000..a7cf9a8 --- /dev/null +++ b/recovery/root/sbin/newfs_msdos @@ -0,0 +1 @@ +toolbox \ No newline at end of file diff --git a/recovery/root/sbin/nice b/recovery/root/sbin/nice new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/nice @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/nl b/recovery/root/sbin/nl new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/nl @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/nmeter b/recovery/root/sbin/nmeter new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/nmeter @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/nohup b/recovery/root/sbin/nohup new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/nohup @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/nproc b/recovery/root/sbin/nproc new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/nproc @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/nslookup b/recovery/root/sbin/nslookup new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/nslookup @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/ntpd b/recovery/root/sbin/ntpd new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/ntpd @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/od b/recovery/root/sbin/od new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/od @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/openvt b/recovery/root/sbin/openvt new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/openvt @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/partprobe b/recovery/root/sbin/partprobe new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/partprobe @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/paste b/recovery/root/sbin/paste new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/paste @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/patch b/recovery/root/sbin/patch new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/patch @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/pgrep b/recovery/root/sbin/pgrep new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/pgrep @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/pidof b/recovery/root/sbin/pidof new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/pidof @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/ping b/recovery/root/sbin/ping new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/ping @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/pipe_progress b/recovery/root/sbin/pipe_progress new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/pipe_progress @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/pivot_root b/recovery/root/sbin/pivot_root new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/pivot_root @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/pkill b/recovery/root/sbin/pkill new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/pkill @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/pmap b/recovery/root/sbin/pmap new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/pmap @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/poweroff b/recovery/root/sbin/poweroff new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/poweroff @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/prepdecrypt.sh b/recovery/root/sbin/prepdecrypt.sh old mode 100644 new mode 100755 index 3443b99..02a0edf --- a/recovery/root/sbin/prepdecrypt.sh +++ b/recovery/root/sbin/prepdecrypt.sh @@ -86,7 +86,8 @@ cp /v/lib64/libtime_genoff.so /vendor/lib64/ cp /v/lib64/libkeymasterdeviceutils.so /vendor/lib64/ cp /v/lib64/libkeymasterprovision.so /vendor/lib64/ cp /v/lib64/libkeymasterutils.so /vendor/lib64/ -cp /v/lib64/vendor.qti.hardware.tui_comm@1.0_vendor.so /vendor/lib64/ +cp /v/lib64/libqtikeymaster4.so /vendor/lib64/ +cp /v/lib64/vendor.qti.hardware.tui_comm@1.0.so /vendor/lib64/ cp /v/lib64/hw/bootctrl.sdm845.so /vendor/lib64/hw/ cp /v/lib64/hw/android.hardware.boot@1.0-impl.so /vendor/lib64/hw/ cp /v/lib64/hw/android.hardware.gatekeeper@1.0-impl-qti.so /vendor/lib64/hw/ @@ -97,7 +98,7 @@ cp /v/compatibility_matrix.xml /vendor/ relink /v/bin/hw/android.hardware.boot@1.0-service relink /v/bin/hw/android.hardware.gatekeeper@1.0-service-qti -relink /v/bin/hw/android.hardware.keymaster@3.0-service-qti +relink /v/bin/hw/android.hardware.keymaster@4.0-service-qti finish exit 0 diff --git a/recovery/root/sbin/printenv b/recovery/root/sbin/printenv new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/printenv @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/printf b/recovery/root/sbin/printf new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/printf @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/ps b/recovery/root/sbin/ps new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/ps @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/pstree b/recovery/root/sbin/pstree new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/pstree @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/pwd b/recovery/root/sbin/pwd new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/pwd @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/pwdx b/recovery/root/sbin/pwdx new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/pwdx @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/qseecomd b/recovery/root/sbin/qseecomd old mode 100644 new mode 100755 index 3d710fa..d232d8a Binary files a/recovery/root/sbin/qseecomd and b/recovery/root/sbin/qseecomd differ diff --git a/recovery/root/sbin/rdate b/recovery/root/sbin/rdate new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/rdate @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/rdev b/recovery/root/sbin/rdev new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/rdev @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/readahead b/recovery/root/sbin/readahead new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/readahead @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/readlink b/recovery/root/sbin/readlink new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/readlink @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/realpath b/recovery/root/sbin/realpath new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/realpath @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/renice b/recovery/root/sbin/renice new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/renice @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/reset b/recovery/root/sbin/reset new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/reset @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/resize b/recovery/root/sbin/resize new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/resize @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/restorecon b/recovery/root/sbin/restorecon new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/restorecon @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/rev b/recovery/root/sbin/rev new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/rev @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/rfkill b/recovery/root/sbin/rfkill new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/rfkill @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/rm b/recovery/root/sbin/rm new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/rm @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/rmdir b/recovery/root/sbin/rmdir new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/rmdir @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/rmmod b/recovery/root/sbin/rmmod new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/rmmod @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/route b/recovery/root/sbin/route new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/route @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/run-parts b/recovery/root/sbin/run-parts new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/run-parts @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/runcon b/recovery/root/sbin/runcon new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/runcon @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/rx b/recovery/root/sbin/rx new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/rx @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/sed b/recovery/root/sbin/sed new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/sed @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/selinuxenabled b/recovery/root/sbin/selinuxenabled new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/selinuxenabled @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/seq b/recovery/root/sbin/seq new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/seq @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/sestatus b/recovery/root/sbin/sestatus new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/sestatus @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/setconsole b/recovery/root/sbin/setconsole new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/setconsole @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/setenforce b/recovery/root/sbin/setenforce new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/setenforce @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/setfiles b/recovery/root/sbin/setfiles new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/setfiles @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/setkeycodes b/recovery/root/sbin/setkeycodes new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/setkeycodes @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/setprop b/recovery/root/sbin/setprop new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/setprop @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/setsebool b/recovery/root/sbin/setsebool new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/setsebool @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/setserial b/recovery/root/sbin/setserial new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/setserial @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/setsid b/recovery/root/sbin/setsid new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/setsid @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/sh b/recovery/root/sbin/sh new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/sh @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/sha1sum b/recovery/root/sbin/sha1sum new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/sha1sum @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/sha224sum b/recovery/root/sbin/sha224sum new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/sha224sum @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/sha256sum b/recovery/root/sbin/sha256sum new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/sha256sum @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/sha384sum b/recovery/root/sbin/sha384sum new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/sha384sum @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/sha3sum b/recovery/root/sbin/sha3sum new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/sha3sum @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/sha512sum b/recovery/root/sbin/sha512sum new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/sha512sum @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/sleep b/recovery/root/sbin/sleep new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/sleep @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/smemcap b/recovery/root/sbin/smemcap new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/smemcap @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/sort b/recovery/root/sbin/sort new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/sort @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/split b/recovery/root/sbin/split new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/split @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/start b/recovery/root/sbin/start new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/start @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/stat b/recovery/root/sbin/stat new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/stat @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/stop b/recovery/root/sbin/stop new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/stop @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/strings b/recovery/root/sbin/strings new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/strings @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/stty b/recovery/root/sbin/stty new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/stty @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/sum b/recovery/root/sbin/sum new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/sum @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/swapoff b/recovery/root/sbin/swapoff new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/swapoff @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/swapon b/recovery/root/sbin/swapon new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/swapon @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/sync b/recovery/root/sbin/sync new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/sync @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/sysctl b/recovery/root/sbin/sysctl new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/sysctl @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/tac b/recovery/root/sbin/tac new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/tac @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/tail b/recovery/root/sbin/tail new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/tail @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/tar b/recovery/root/sbin/tar new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/tar @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/taskset b/recovery/root/sbin/taskset new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/taskset @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/tee b/recovery/root/sbin/tee new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/tee @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/telnet b/recovery/root/sbin/telnet new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/telnet @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/telnetd b/recovery/root/sbin/telnetd new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/telnetd @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/test b/recovery/root/sbin/test new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/test @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/tftp b/recovery/root/sbin/tftp new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/tftp @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/tftpd b/recovery/root/sbin/tftpd new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/tftpd @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/time b/recovery/root/sbin/time new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/time @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/time_daemon b/recovery/root/sbin/time_daemon new file mode 100755 index 0000000..12c9b6e Binary files /dev/null and b/recovery/root/sbin/time_daemon differ diff --git a/recovery/root/sbin/timeout b/recovery/root/sbin/timeout new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/timeout @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/toolbox b/recovery/root/sbin/toolbox new file mode 100755 index 0000000..b03e09a Binary files /dev/null and b/recovery/root/sbin/toolbox differ diff --git a/recovery/root/sbin/top b/recovery/root/sbin/top new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/top @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/touch b/recovery/root/sbin/touch new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/touch @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/toybox b/recovery/root/sbin/toybox new file mode 100755 index 0000000..b29894a Binary files /dev/null and b/recovery/root/sbin/toybox differ diff --git a/recovery/root/sbin/tr b/recovery/root/sbin/tr new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/tr @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/traceroute b/recovery/root/sbin/traceroute new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/traceroute @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/traceroute6 b/recovery/root/sbin/traceroute6 new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/traceroute6 @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/true b/recovery/root/sbin/true new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/true @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/truncate b/recovery/root/sbin/truncate new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/truncate @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/tty b/recovery/root/sbin/tty new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/tty @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/ttysize b/recovery/root/sbin/ttysize new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/ttysize @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/tunctl b/recovery/root/sbin/tunctl new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/tunctl @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/ulimit b/recovery/root/sbin/ulimit new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/ulimit @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/umount b/recovery/root/sbin/umount new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/umount @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/uname b/recovery/root/sbin/uname new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/uname @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/uncompress b/recovery/root/sbin/uncompress new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/uncompress @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/unexpand b/recovery/root/sbin/unexpand new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/unexpand @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/uniq b/recovery/root/sbin/uniq new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/uniq @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/unix2dos b/recovery/root/sbin/unix2dos new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/unix2dos @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/unlzma b/recovery/root/sbin/unlzma new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/unlzma @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/unlzop b/recovery/root/sbin/unlzop new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/unlzop @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/unxz b/recovery/root/sbin/unxz new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/unxz @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/unzip b/recovery/root/sbin/unzip new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/unzip @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/update_engine_sideload b/recovery/root/sbin/update_engine_sideload old mode 100644 new mode 100755 diff --git a/recovery/root/sbin/uptime b/recovery/root/sbin/uptime new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/uptime @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/usleep b/recovery/root/sbin/usleep new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/usleep @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/uudecode b/recovery/root/sbin/uudecode new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/uudecode @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/uuencode b/recovery/root/sbin/uuencode new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/uuencode @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/vconfig b/recovery/root/sbin/vconfig new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/vconfig @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/vi b/recovery/root/sbin/vi new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/vi @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/vmstat b/recovery/root/sbin/vmstat new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/vmstat @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/watch b/recovery/root/sbin/watch new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/watch @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/wc b/recovery/root/sbin/wc new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/wc @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/wget b/recovery/root/sbin/wget new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/wget @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/which b/recovery/root/sbin/which new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/which @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/whoami b/recovery/root/sbin/whoami new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/whoami @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/xargs b/recovery/root/sbin/xargs new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/xargs @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/xxd b/recovery/root/sbin/xxd new file mode 120000 index 0000000..f978d79 --- /dev/null +++ b/recovery/root/sbin/xxd @@ -0,0 +1 @@ +toybox \ No newline at end of file diff --git a/recovery/root/sbin/xz b/recovery/root/sbin/xz new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/xz @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/xzcat b/recovery/root/sbin/xzcat new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/xzcat @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/yes b/recovery/root/sbin/yes new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/yes @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/sbin/zcat b/recovery/root/sbin/zcat new file mode 120000 index 0000000..c3fa810 --- /dev/null +++ b/recovery/root/sbin/zcat @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/recovery/root/system_root/system/bin/crash_dump64 b/recovery/root/system_root/system/bin/crash_dump64 new file mode 120000 index 0000000..94f8338 --- /dev/null +++ b/recovery/root/system_root/system/bin/crash_dump64 @@ -0,0 +1 @@ +/sbin/crash_dump64 \ No newline at end of file diff --git a/recovery/root/system_root/system/compatibility_matrix.xml b/recovery/root/system_root/system/compatibility_matrix.xml new file mode 100644 index 0000000..94b86ec --- /dev/null +++ b/recovery/root/system_root/system/compatibility_matrix.xml @@ -0,0 +1,3421 @@ + + + + android.hardware.audio + 4.0 + + IDevicesFactory + default + + + + android.hardware.audio.effect + 4.0 + + IEffectsFactory + default + + + + android.hardware.authsecret + 1.0 + + IAuthSecret + default + + + + android.hardware.automotive.audiocontrol + 1.0 + + IAudioControl + default + + + + android.hardware.automotive.evs + 1.0 + + IEvsEnumerator + default + + + + android.hardware.automotive.vehicle + 2.0 + + IVehicle + default + + + + android.hardware.biometrics.fingerprint + 2.1 + + IBiometricsFingerprint + default + + + + android.hardware.bluetooth + 1.0 + + IBluetoothHci + default + + + + android.hardware.bluetooth.a2dp + 1.0 + + IBluetoothAudioOffload + default + + + + android.hardware.boot + 1.0 + + IBootControl + default + + + + android.hardware.broadcastradio + 1.0-1 + + IBroadcastRadioFactory + default + + + + android.hardware.broadcastradio + 2.0 + + IBroadcastRadio + .* + + + + android.hardware.camera.provider + 2.4 + + ICameraProvider + [^/]+/[0-9]+ + + + + android.hardware.cas + 1.0 + + IMediaCasService + default + + + + android.hardware.configstore + 1.0-1 + + ISurfaceFlingerConfigs + default + + + + android.hardware.confirmationui + 1.0 + + IConfirmationUI + default + + + + android.hardware.contexthub + 1.0 + + IContexthub + default + + + + android.hardware.drm + 1.0 + + ICryptoFactory + .* + + + IDrmFactory + .* + + + + android.hardware.drm + 1.1 + + ICryptoFactory + .* + + + IDrmFactory + .* + + + + android.hardware.dumpstate + 1.0 + + IDumpstateDevice + default + + + + android.hardware.gatekeeper + 1.0 + + IGatekeeper + default + + + + android.hardware.gnss + 1.0-1 + + IGnss + default + + + + android.hardware.gnss + 1.0 + + IGnss + gnss_vendor + + + + android.hardware.gnss + 1.0-1 + + IGnss + default + + + + android.hardware.graphics.allocator + 2.0 + + IAllocator + default + + + + android.hardware.graphics.composer + 2.1-2 + + IComposer + default + + + + android.hardware.graphics.mapper + 2.0-1 + + IMapper + default + + + + android.hardware.health + 2.0 + + IHealth + default + + + + android.hardware.ir + 1.0 + + + android.hardware.keymaster + 3.0 + 4.0 + + IKeymasterDevice + default + + + + android.hardware.keymaster + 4.0 + + IKeymasterDevice + strongbox + + + + android.hardware.light + 2.0 + + ILight + default + + + + android.hardware.media.omx + 1.0 + + IOmx + default + + + IOmxStore + default + + + + android.hardware.memtrack + 1.0 + + IMemtrack + default + + + + android.hardware.neuralnetworks + 1.0-1 + + IDevice + .* + + + + android.hardware.nfc + 1.0 + + INfc + default + + + + android.hardware.nfc + 1.1 + + INfc + default + + + + android.hardware.oemlock + 1.0 + + IOemLock + default + + + + android.hardware.power + 1.0-2 + + IPower + default + + + + android.hardware.radio + 1.0-2 + + IRadio + slot1 + slot2 + + + ISap + slot1 + slot2 + + + + android.hardware.radio + 1.0-2 + + IRadio + slot1 + slot2 + slot3 + + + ISap + slot1 + + + + android.hardware.radio.config + 1.0 + + IRadioConfig + default + + + + android.hardware.renderscript + 1.0 + + IDevice + default + + + + android.hardware.secure_element + 1.0 + + ISecureElement + SIM[1-9][0-9]* + eSE[1-9][0-9]* + + + + android.hardware.sensors + 1.0 + + ISensors + default + + + + android.hardware.soundtrigger + 2.0-1 + + ISoundTriggerHw + default + + + + android.hardware.tetheroffload.config + 1.0 + + IOffloadConfig + default + + + + android.hardware.tetheroffload.control + 1.0 + + IOffloadControl + default + + + + android.hardware.thermal + 1.0-1 + + IThermal + default + + + + android.hardware.tv.cec + 1.0 + + IHdmiCec + default + + + + android.hardware.tv.input + 1.0 + + ITvInput + default + + + + android.hardware.usb + 1.0-1 + + IUsb + default + + + + android.hardware.usb.gadget + 1.0 + + IUsbGadget + default + + + + android.hardware.vibrator + 1.0-2 + + IVibrator + default + + + + android.hardware.vr + 1.0 + + IVr + default + + + + android.hardware.weaver + 1.0 + + IWeaver + default + + + + android.hardware.wifi + 1.0-2 + + IWifi + default + + + + android.hardware.wifi.hostapd + 1.0 + + IHostapd + default + + + + android.hardware.wifi.offload + 1.0 + + IOffload + default + + + + android.hardware.wifi.offload + 1.0 + + IHostapdVendor + default + + + + android.hardware.wifi.supplicant + 1.0 + + ISupplicant + default + + + + android.hardware.wifi.supplicant + 1.0-1 + + ISupplicant + default + + + + com.qualcomm.qti.ant + 1.0 + + IAntHci + default + + + + com.qualcomm.qti.bluetooth_audio + 1.0 + + IBluetoothAudio + default + + + + com.qualcomm.qti.dpm.api + 1.0 + + IdpmQmi + dpmQmiService + + + + com.qualcomm.qti.imscmservice + 2.0-1 + + IImsCmService + qti.ims.connectionmanagerservice + + + + com.qualcomm.qti.uceservice + 2.0 + + IUceService + com.qualcomm.qti.uceservice + + + + com.qualcomm.qti.wifidisplayhal + 1.0 + + IDSManager + wifidisplaydshal + + + IHDCPSession + wifidisplayhdcphal + + + + com.quicinc.cne.api + 1.0-1 + + IApiService + cnd + + + + com.quicinc.cne.server + 2.0-2 + + IServer + cnd + + + + vendor.display.color + 1.0-1 + + IDisplayColor + default + + + + vendor.display.config + 1.0-2 + + IDisplayConfig + default + + + + vendor.display.postproc + 1.0 + + IDisplayPostproc + default + + + + vendor.goodix.hardware.biometrics.fingerprint + 2.1 + + IGoodixFingerprintDaemon + default + + + + vendor.nxp.hardware.nfc + 1.0 + + INqNfc + default + + + + vendor.nxp.nxpese + 1.0 + + INxpWiredSe + default + + + + vendor.nxp.nxpese + 1.0 + + INxpEse + default + + + + vendor.nxp.nxpnfc + 1.0 + + INxpNfc + default + + + + vendor.oneplus.camera.CameraHIDL + 1.0 + + IOnePlusCameraProvider + default + + + + vendor.oneplus.faceunlock.hal + 1.0 + + IFaceUnlockNativeService + default + + + + vendor.oneplus.fingerprint.extension + 1.0 + + IVendorFingerprintExtensions + default + + + + vendor.oneplus.hardware.display + 1.0 + + IOneplusDisplay + default + + + + vendor.oneplus.hardware.drmkey + 1.0 + + IOneplusDrmKey + default + + + + vendor.oneplus.hardware.hdcpkey + 1.0 + + IOneplusHdcpKey + default + + + + vendor.oneplus.hardware.hdcpkey + 1.0 + + IOneplusHdcpKey + default + + + + vendor.oneplus.hardware.ifaa + 2.0 + + IOneplusIfaa + default + + + + vendor.oneplus.hardware.param + 1.0 + + IOneplusParam + default + + + + vendor.oneplus.hardware.rpmb + 1.0 + + IOneplusRpmb + default + + + + vendor.oneplus.hardware.wifi + 1.1 + + IOneplusWifi + default + + + + vendor.qti.data.factory + 1.0 + + IFactory + default + + + + vendor.qti.esepowermanager + 1.0 + + IEsePowerManager + default + + + + vendor.qti.gnss + 1.0-2 + 2.0 + + ILocHidlGnss + gnss_vendor + + + + vendor.qti.hardware.alarm + 1.0 + + IAlarm + default + + + + vendor.qti.hardware.data.latency + 1.0 + + ILinkLatency + default + + + + vendor.qti.hardware.factory + 1.0 + + IFactory + default + + + + vendor.qti.hardware.fm + 1.0 + + IFmHci + default + + + + vendor.qti.hardware.improvetouch.blobmanager + 1.0 + + IBlobManager + BlobManagerService + + + + vendor.qti.hardware.improvetouch.gesturemanager + 1.0 + + IGestureManager + GestureManagerService + + + + vendor.qti.hardware.improvetouch.touchcompanion + 1.0 + + ITouchCompanion + TouchCompanionService + + + + vendor.qti.hardware.iop + 2.0 + + IIop + default + + + + vendor.qti.hardware.perf + 1.0 + + IPerf + default + + + + vendor.qti.hardware.qdutils_disp + 1.0 + + IQdutilsDisp + default + + + + vendor.qti.hardware.qteeconnector + 1.0 + + IAppConnector + default + + + IGPAppConnector + default + + + + vendor.qti.hardware.radio.am + 1.0 + + IQcRilAudio + slot1 + slot2 + + + + vendor.qti.hardware.radio.ims + 1.0-3 + + IImsRadio + imsradio0 + imsradio1 + + + + vendor.qti.hardware.radio.lpa + 1.0 + + IUimLpa + UimLpa0 + UimLpa1 + + + + vendor.qti.hardware.radio.qcrilhook + 1.0 + + IQtiOemHook + oemhook0 + oemhook1 + + + + vendor.qti.hardware.radio.qtiradio + 1.0 + 2.0 + + IQtiRadio + slot1 + slot2 + + + + vendor.qti.hardware.radio.uim + 1.0-1 + + IUim + Uim0 + Uim1 + + + + vendor.qti.hardware.radio.uim_remote_client + 1.0 + + IUimRemoteServiceClient + uimRemoteClient0 + uimRemoteClient1 + + + + vendor.qti.hardware.radio.uim_remote_server + 1.0 + + IUimRemoteServiceServer + uimRemoteServer0 + uimRemoteServer1 + + + + vendor.qti.hardware.scve.panorama + 1.0 + + IPanoramaStitching + panoStitching + + + IPanoramaTracking + panoTracking + + + + vendor.qti.hardware.sensorscalibrate + 1.0 + + ISensorsCalibrate + default + + + + vendor.qti.hardware.soter + 1.0 + + ISoter + default + + + + vendor.qti.hardware.tui_comm + 1.0 + + ITuiComm + default + + + + vendor.qti.hardware.vpp + 1.0-1 + + IHidlVppService + vppService + + + + vendor.qti.hardware.wifi.hostapd + 1.0 + + IHostapdVendor + default + + + + vendor.qti.hardware.wifi.keystore + 1.0 + + IKeystoreExt + default + + + + vendor.qti.hardware.wifi.keystore + 1.0 + + IKeystoreExt + default + + + + vendor.qti.hardware.wifi.supplicant + 2.0 + + ISupplicantVendor + default + + + + vendor.qti.hardware.wigig.netperftuner + 1.0 + + INetPerfTuner + default + + + + vendor.qti.hardware.wigig.supptunnel + 1.0 + + ISuppTunnelProvider + default + + + + vendor.qti.ims.callinfo + 1.0 + + IService + default + + + + vendor.qti.imsrtpservice + 1.0 + + IRTPService + imsrtpservice + + + + vendor.qti.voiceprint + 1.0 + + IQtiVoicePrintService + default + + + + + CONFIG_ADVISE_SYSCALLS + y + + + CONFIG_AIO + y + + + CONFIG_ANDROID + y + + + CONFIG_ANDROID_BINDER_DEVICES + binder,hwbinder,vndbinder + + + CONFIG_ANDROID_BINDER_IPC + y + + + CONFIG_ASHMEM + y + + + CONFIG_AUDIT + y + + + CONFIG_BLK_DEV_INITRD + y + + + CONFIG_BLOCK + y + + + CONFIG_CGROUPS + y + + + CONFIG_CGROUP_CPUACCT + y + + + CONFIG_CGROUP_FREEZER + y + + + CONFIG_CGROUP_SCHED + y + + + CONFIG_CRYPTO_AES + y + + + CONFIG_CRYPTO_CBC + y + + + CONFIG_CRYPTO_ECB + y + + + CONFIG_CRYPTO_GCM + y + + + CONFIG_CRYPTO_HMAC + y + + + CONFIG_CRYPTO_MD5 + y + + + CONFIG_CRYPTO_NULL + y + + + CONFIG_CRYPTO_SHA1 + y + + + CONFIG_CRYPTO_SHA256 + y + + + CONFIG_CRYPTO_SHA512 + y + + + CONFIG_DEFAULT_SECURITY_SELINUX + y + + + CONFIG_DEVKMEM + n + + + CONFIG_DEVMEM + n + + + CONFIG_EMBEDDED + y + + + CONFIG_EPOLL + y + + + CONFIG_EVENTFD + y + + + CONFIG_FHANDLE + n + + + CONFIG_FUTEX + y + + + CONFIG_HARDENED_USERCOPY + y + + + CONFIG_HIGH_RES_TIMERS + y + + + CONFIG_IKCONFIG + y + + + CONFIG_IKCONFIG_PROC + y + + + CONFIG_INET + y + + + CONFIG_INET6_ESP + y + + + CONFIG_INET6_IPCOMP + y + + + CONFIG_INET6_XFRM_MODE_TRANSPORT + y + + + CONFIG_INET6_XFRM_MODE_TUNNEL + y + + + CONFIG_INET_DIAG_DESTROY + y + + + CONFIG_INET_ESP + y + + + CONFIG_INET_LRO + n + + + CONFIG_INET_XFRM_MODE_TRANSPORT + y + + + CONFIG_INET_XFRM_MODE_TUNNEL + y + + + CONFIG_IP6_NF_FILTER + y + + + CONFIG_IP6_NF_IPTABLES + y + + + CONFIG_IP6_NF_MANGLE + y + + + CONFIG_IP6_NF_MATCH_RPFILTER + y + + + CONFIG_IP6_NF_RAW + y + + + CONFIG_IP6_NF_TARGET_REJECT + y + + + CONFIG_IPV6 + y + + + CONFIG_IPV6_MIP6 + y + + + CONFIG_IPV6_MULTIPLE_TABLES + y + + + CONFIG_IPV6_OPTIMISTIC_DAD + y + + + CONFIG_IPV6_ROUTER_PREF + y + + + CONFIG_IPV6_ROUTE_INFO + y + + + CONFIG_IPV6_VTI + y + + + CONFIG_IP_ADVANCED_ROUTER + y + + + CONFIG_IP_MULTICAST + y + + + CONFIG_IP_MULTIPLE_TABLES + y + + + CONFIG_IP_NF_ARPFILTER + y + + + CONFIG_IP_NF_ARPTABLES + y + + + CONFIG_IP_NF_ARP_MANGLE + y + + + CONFIG_IP_NF_FILTER + y + + + CONFIG_IP_NF_IPTABLES + y + + + CONFIG_IP_NF_MANGLE + y + + + CONFIG_IP_NF_MATCH_ECN + y + + + CONFIG_IP_NF_MATCH_TTL + y + + + CONFIG_IP_NF_NAT + y + + + CONFIG_IP_NF_RAW + y + + + CONFIG_IP_NF_SECURITY + y + + + CONFIG_IP_NF_TARGET_MASQUERADE + y + + + CONFIG_IP_NF_TARGET_NETMAP + y + + + CONFIG_IP_NF_TARGET_REDIRECT + y + + + CONFIG_IP_NF_TARGET_REJECT + y + + + CONFIG_MAGIC_SYSRQ + y + + + CONFIG_MODULES + y + + + CONFIG_MODULE_UNLOAD + y + + + CONFIG_MODVERSIONS + y + + + CONFIG_NET + y + + + CONFIG_NETDEVICES + y + + + CONFIG_NETFILTER + y + + + CONFIG_NETFILTER_XT_MATCH_COMMENT + y + + + CONFIG_NETFILTER_XT_MATCH_CONNLIMIT + y + + + CONFIG_NETFILTER_XT_MATCH_CONNMARK + y + + + CONFIG_NETFILTER_XT_MATCH_CONNTRACK + y + + + CONFIG_NETFILTER_XT_MATCH_HASHLIMIT + y + + + CONFIG_NETFILTER_XT_MATCH_HELPER + y + + + CONFIG_NETFILTER_XT_MATCH_IPRANGE + y + + + CONFIG_NETFILTER_XT_MATCH_LENGTH + y + + + CONFIG_NETFILTER_XT_MATCH_LIMIT + y + + + CONFIG_NETFILTER_XT_MATCH_MAC + y + + + CONFIG_NETFILTER_XT_MATCH_MARK + y + + + CONFIG_NETFILTER_XT_MATCH_PKTTYPE + y + + + CONFIG_NETFILTER_XT_MATCH_POLICY + y + + + CONFIG_NETFILTER_XT_MATCH_QTAGUID + y + + + CONFIG_NETFILTER_XT_MATCH_QUOTA + y + + + CONFIG_NETFILTER_XT_MATCH_QUOTA2 + y + + + CONFIG_NETFILTER_XT_MATCH_SOCKET + y + + + CONFIG_NETFILTER_XT_MATCH_STATE + y + + + CONFIG_NETFILTER_XT_MATCH_STATISTIC + y + + + CONFIG_NETFILTER_XT_MATCH_STRING + y + + + CONFIG_NETFILTER_XT_MATCH_TIME + y + + + CONFIG_NETFILTER_XT_MATCH_U32 + y + + + CONFIG_NETFILTER_XT_TARGET_CLASSIFY + y + + + CONFIG_NETFILTER_XT_TARGET_CONNMARK + y + + + CONFIG_NETFILTER_XT_TARGET_CONNSECMARK + y + + + CONFIG_NETFILTER_XT_TARGET_IDLETIMER + y + + + CONFIG_NETFILTER_XT_TARGET_MARK + y + + + CONFIG_NETFILTER_XT_TARGET_NFLOG + y + + + CONFIG_NETFILTER_XT_TARGET_NFQUEUE + y + + + CONFIG_NETFILTER_XT_TARGET_SECMARK + y + + + CONFIG_NETFILTER_XT_TARGET_TCPMSS + y + + + CONFIG_NETFILTER_XT_TARGET_TPROXY + y + + + CONFIG_NETFILTER_XT_TARGET_TRACE + y + + + CONFIG_NET_CLS_ACT + y + + + CONFIG_NET_CLS_U32 + y + + + CONFIG_NET_EMATCH + y + + + CONFIG_NET_EMATCH_U32 + y + + + CONFIG_NET_IPVTI + y + + + CONFIG_NET_KEY + y + + + CONFIG_NET_SCHED + y + + + CONFIG_NET_SCH_HTB + y + + + CONFIG_NFSD + n + + + CONFIG_NFS_FS + n + + + CONFIG_NF_CONNTRACK + y + + + CONFIG_NF_CONNTRACK_AMANDA + y + + + CONFIG_NF_CONNTRACK_EVENTS + y + + + CONFIG_NF_CONNTRACK_FTP + y + + + CONFIG_NF_CONNTRACK_H323 + y + + + CONFIG_NF_CONNTRACK_IPV4 + y + + + CONFIG_NF_CONNTRACK_IPV6 + y + + + CONFIG_NF_CONNTRACK_IRC + y + + + CONFIG_NF_CONNTRACK_NETBIOS_NS + y + + + CONFIG_NF_CONNTRACK_PPTP + y + + + CONFIG_NF_CONNTRACK_SANE + y + + + CONFIG_NF_CONNTRACK_SECMARK + y + + + CONFIG_NF_CONNTRACK_TFTP + y + + + CONFIG_NF_CT_NETLINK + y + + + CONFIG_NF_CT_PROTO_DCCP + y + + + CONFIG_NF_CT_PROTO_SCTP + y + + + CONFIG_NF_CT_PROTO_UDPLITE + y + + + CONFIG_NF_NAT + y + + + CONFIG_NO_HZ + y + + + CONFIG_PACKET + y + + + CONFIG_PM_WAKELOCKS + y + + + CONFIG_PPP + y + + + CONFIG_PPPOLAC + y + + + CONFIG_PPPOPNS + y + + + CONFIG_PPP_BSDCOMP + y + + + CONFIG_PPP_DEFLATE + y + + + CONFIG_PPP_MPPE + y + + + CONFIG_PREEMPT + y + + + CONFIG_PROC_FS + y + + + CONFIG_PROFILING + y + + + CONFIG_RTC_CLASS + y + + + CONFIG_RT_GROUP_SCHED + y + + + CONFIG_SECCOMP + y + + + CONFIG_SECCOMP_FILTER + y + + + CONFIG_SECURITY + y + + + CONFIG_SECURITY_NETWORK + y + + + CONFIG_SECURITY_PERF_EVENTS_RESTRICT + y + + + CONFIG_SECURITY_SELINUX + y + + + CONFIG_SHMEM + y + + + CONFIG_SIGNALFD + y + + + CONFIG_STAGING + y + + + CONFIG_SUSPEND + y + + + CONFIG_SYNC + y + + + CONFIG_SYSFS + y + + + CONFIG_SYSVIPC + n + + + CONFIG_TIMERFD + y + + + CONFIG_TUN + y + + + CONFIG_UID_SYS_STATS + y + + + CONFIG_UNIX + y + + + CONFIG_USB_CONFIGFS + y + + + CONFIG_USB_CONFIGFS_F_ACC + y + + + CONFIG_USB_CONFIGFS_F_AUDIO_SRC + y + + + CONFIG_USB_CONFIGFS_F_FS + y + + + CONFIG_USB_CONFIGFS_F_MIDI + y + + + CONFIG_USB_CONFIGFS_UEVENT + y + + + CONFIG_USB_GADGET + y + + + CONFIG_USB_SUPPORT + y + + + CONFIG_USELIB + n + + + CONFIG_XFRM_USER + y + + + + + + CONFIG_ARM + y + + + + CONFIG_OABI_COMPAT + n + + + + + + CONFIG_ARM64 + y + + + + CONFIG_ARMV8_DEPRECATED + y + + + CONFIG_CP15_BARRIER_EMULATION + y + + + CONFIG_SETEND_EMULATION + y + + + CONFIG_SWP_EMULATION + y + + + + + CONFIG_ADVISE_SYSCALLS + y + + + CONFIG_AIO + y + + + CONFIG_ANDROID + y + + + CONFIG_ANDROID_BINDER_DEVICES + binder,hwbinder,vndbinder + + + CONFIG_ANDROID_BINDER_IPC + y + + + CONFIG_ASHMEM + y + + + CONFIG_AUDIT + y + + + CONFIG_BLK_DEV_INITRD + y + + + CONFIG_BLOCK + y + + + CONFIG_BPF_SYSCALL + y + + + CONFIG_CGROUPS + y + + + CONFIG_CGROUP_BPF + y + + + CONFIG_CGROUP_CPUACCT + y + + + CONFIG_CGROUP_FREEZER + y + + + CONFIG_CGROUP_SCHED + y + + + CONFIG_CRYPTO_AES + y + + + CONFIG_CRYPTO_CBC + y + + + CONFIG_CRYPTO_ECB + y + + + CONFIG_CRYPTO_GCM + y + + + CONFIG_CRYPTO_HMAC + y + + + CONFIG_CRYPTO_MD5 + y + + + CONFIG_CRYPTO_NULL + y + + + CONFIG_CRYPTO_SHA1 + y + + + CONFIG_CRYPTO_SHA256 + y + + + CONFIG_CRYPTO_SHA512 + y + + + CONFIG_DEFAULT_SECURITY_SELINUX + y + + + CONFIG_DEVKMEM + n + + + CONFIG_DEVMEM + n + + + CONFIG_EMBEDDED + y + + + CONFIG_EPOLL + y + + + CONFIG_EVENTFD + y + + + CONFIG_FHANDLE + n + + + CONFIG_FUTEX + y + + + CONFIG_HARDENED_USERCOPY + y + + + CONFIG_HIGH_RES_TIMERS + y + + + CONFIG_IKCONFIG + y + + + CONFIG_IKCONFIG_PROC + y + + + CONFIG_INET + y + + + CONFIG_INET6_ESP + y + + + CONFIG_INET6_IPCOMP + y + + + CONFIG_INET6_XFRM_MODE_TRANSPORT + y + + + CONFIG_INET6_XFRM_MODE_TUNNEL + y + + + CONFIG_INET_DIAG_DESTROY + y + + + CONFIG_INET_ESP + y + + + CONFIG_INET_XFRM_MODE_TRANSPORT + y + + + CONFIG_INET_XFRM_MODE_TUNNEL + y + + + CONFIG_IP6_NF_FILTER + y + + + CONFIG_IP6_NF_IPTABLES + y + + + CONFIG_IP6_NF_MANGLE + y + + + CONFIG_IP6_NF_MATCH_RPFILTER + y + + + CONFIG_IP6_NF_RAW + y + + + CONFIG_IP6_NF_TARGET_REJECT + y + + + CONFIG_IPV6 + y + + + CONFIG_IPV6_MIP6 + y + + + CONFIG_IPV6_MULTIPLE_TABLES + y + + + CONFIG_IPV6_OPTIMISTIC_DAD + y + + + CONFIG_IPV6_ROUTER_PREF + y + + + CONFIG_IPV6_ROUTE_INFO + y + + + CONFIG_IPV6_VTI + y + + + CONFIG_IP_ADVANCED_ROUTER + y + + + CONFIG_IP_MULTICAST + y + + + CONFIG_IP_MULTIPLE_TABLES + y + + + CONFIG_IP_NF_ARPFILTER + y + + + CONFIG_IP_NF_ARPTABLES + y + + + CONFIG_IP_NF_ARP_MANGLE + y + + + CONFIG_IP_NF_FILTER + y + + + CONFIG_IP_NF_IPTABLES + y + + + CONFIG_IP_NF_MANGLE + y + + + CONFIG_IP_NF_MATCH_ECN + y + + + CONFIG_IP_NF_MATCH_TTL + y + + + CONFIG_IP_NF_NAT + y + + + CONFIG_IP_NF_RAW + y + + + CONFIG_IP_NF_SECURITY + y + + + CONFIG_IP_NF_TARGET_MASQUERADE + y + + + CONFIG_IP_NF_TARGET_NETMAP + y + + + CONFIG_IP_NF_TARGET_REDIRECT + y + + + CONFIG_IP_NF_TARGET_REJECT + y + + + CONFIG_MAGIC_SYSRQ + y + + + CONFIG_MODULES + y + + + CONFIG_MODULE_UNLOAD + y + + + CONFIG_MODVERSIONS + y + + + CONFIG_NET + y + + + CONFIG_NETDEVICES + y + + + CONFIG_NETFILTER + y + + + CONFIG_NETFILTER_XT_MATCH_BPF + y + + + CONFIG_NETFILTER_XT_MATCH_COMMENT + y + + + CONFIG_NETFILTER_XT_MATCH_CONNLIMIT + y + + + CONFIG_NETFILTER_XT_MATCH_CONNMARK + y + + + CONFIG_NETFILTER_XT_MATCH_CONNTRACK + y + + + CONFIG_NETFILTER_XT_MATCH_HASHLIMIT + y + + + CONFIG_NETFILTER_XT_MATCH_HELPER + y + + + CONFIG_NETFILTER_XT_MATCH_IPRANGE + y + + + CONFIG_NETFILTER_XT_MATCH_LENGTH + y + + + CONFIG_NETFILTER_XT_MATCH_LIMIT + y + + + CONFIG_NETFILTER_XT_MATCH_MAC + y + + + CONFIG_NETFILTER_XT_MATCH_MARK + y + + + CONFIG_NETFILTER_XT_MATCH_PKTTYPE + y + + + CONFIG_NETFILTER_XT_MATCH_POLICY + y + + + CONFIG_NETFILTER_XT_MATCH_QTAGUID + y + + + CONFIG_NETFILTER_XT_MATCH_QUOTA + y + + + CONFIG_NETFILTER_XT_MATCH_QUOTA2 + y + + + CONFIG_NETFILTER_XT_MATCH_SOCKET + y + + + CONFIG_NETFILTER_XT_MATCH_STATE + y + + + CONFIG_NETFILTER_XT_MATCH_STATISTIC + y + + + CONFIG_NETFILTER_XT_MATCH_STRING + y + + + CONFIG_NETFILTER_XT_MATCH_TIME + y + + + CONFIG_NETFILTER_XT_MATCH_U32 + y + + + CONFIG_NETFILTER_XT_TARGET_CLASSIFY + y + + + CONFIG_NETFILTER_XT_TARGET_CONNMARK + y + + + CONFIG_NETFILTER_XT_TARGET_CONNSECMARK + y + + + CONFIG_NETFILTER_XT_TARGET_IDLETIMER + y + + + CONFIG_NETFILTER_XT_TARGET_MARK + y + + + CONFIG_NETFILTER_XT_TARGET_NFLOG + y + + + CONFIG_NETFILTER_XT_TARGET_NFQUEUE + y + + + CONFIG_NETFILTER_XT_TARGET_SECMARK + y + + + CONFIG_NETFILTER_XT_TARGET_TCPMSS + y + + + CONFIG_NETFILTER_XT_TARGET_TPROXY + y + + + CONFIG_NETFILTER_XT_TARGET_TRACE + y + + + CONFIG_NET_CLS_ACT + y + + + CONFIG_NET_CLS_U32 + y + + + CONFIG_NET_EMATCH + y + + + CONFIG_NET_EMATCH_U32 + y + + + CONFIG_NET_IPVTI + y + + + CONFIG_NET_KEY + y + + + CONFIG_NET_SCHED + y + + + CONFIG_NET_SCH_HTB + y + + + CONFIG_NFSD + n + + + CONFIG_NFS_FS + n + + + CONFIG_NF_CONNTRACK + y + + + CONFIG_NF_CONNTRACK_AMANDA + y + + + CONFIG_NF_CONNTRACK_EVENTS + y + + + CONFIG_NF_CONNTRACK_FTP + y + + + CONFIG_NF_CONNTRACK_H323 + y + + + CONFIG_NF_CONNTRACK_IPV4 + y + + + CONFIG_NF_CONNTRACK_IPV6 + y + + + CONFIG_NF_CONNTRACK_IRC + y + + + CONFIG_NF_CONNTRACK_NETBIOS_NS + y + + + CONFIG_NF_CONNTRACK_PPTP + y + + + CONFIG_NF_CONNTRACK_SANE + y + + + CONFIG_NF_CONNTRACK_SECMARK + y + + + CONFIG_NF_CONNTRACK_TFTP + y + + + CONFIG_NF_CT_NETLINK + y + + + CONFIG_NF_CT_PROTO_DCCP + y + + + CONFIG_NF_CT_PROTO_SCTP + y + + + CONFIG_NF_CT_PROTO_UDPLITE + y + + + CONFIG_NF_NAT + y + + + CONFIG_NO_HZ + y + + + CONFIG_PACKET + y + + + CONFIG_PM_WAKELOCKS + y + + + CONFIG_PPP + y + + + CONFIG_PPPOLAC + y + + + CONFIG_PPPOPNS + y + + + CONFIG_PPP_BSDCOMP + y + + + CONFIG_PPP_DEFLATE + y + + + CONFIG_PPP_MPPE + y + + + CONFIG_PREEMPT + y + + + CONFIG_PROC_FS + y + + + CONFIG_PROFILING + y + + + CONFIG_RTC_CLASS + y + + + CONFIG_RT_GROUP_SCHED + y + + + CONFIG_SECCOMP + y + + + CONFIG_SECCOMP_FILTER + y + + + CONFIG_SECURITY + y + + + CONFIG_SECURITY_NETWORK + y + + + CONFIG_SECURITY_PERF_EVENTS_RESTRICT + y + + + CONFIG_SECURITY_SELINUX + y + + + CONFIG_SHMEM + y + + + CONFIG_SIGNALFD + y + + + CONFIG_STAGING + y + + + CONFIG_SUSPEND + y + + + CONFIG_SYNC_FILE + y + + + CONFIG_SYSFS + y + + + CONFIG_SYSVIPC + n + + + CONFIG_TIMERFD + y + + + CONFIG_TUN + y + + + CONFIG_UID_SYS_STATS + y + + + CONFIG_UNIX + y + + + CONFIG_USB_CONFIGFS + y + + + CONFIG_USB_CONFIGFS_F_ACC + y + + + CONFIG_USB_CONFIGFS_F_AUDIO_SRC + y + + + CONFIG_USB_CONFIGFS_F_FS + y + + + CONFIG_USB_CONFIGFS_F_MIDI + y + + + CONFIG_USB_CONFIGFS_UEVENT + y + + + CONFIG_USB_GADGET + y + + + CONFIG_USB_SUPPORT + y + + + CONFIG_USELIB + n + + + CONFIG_XFRM_USER + y + + + + + + CONFIG_ARM + y + + + + CONFIG_OABI_COMPAT + n + + + + + + CONFIG_ARM64 + y + + + + CONFIG_ARMV8_DEPRECATED + y + + + CONFIG_CP15_BARRIER_EMULATION + y + + + CONFIG_SETEND_EMULATION + y + + + CONFIG_SWP_EMULATION + y + + + + + CONFIG_ADVISE_SYSCALLS + y + + + CONFIG_AIO + y + + + CONFIG_ANDROID + y + + + CONFIG_ANDROID_BINDER_DEVICES + binder,hwbinder,vndbinder + + + CONFIG_ANDROID_BINDER_IPC + y + + + CONFIG_ASHMEM + y + + + CONFIG_AUDIT + y + + + CONFIG_BLK_DEV_INITRD + y + + + CONFIG_BLOCK + y + + + CONFIG_BPF_SYSCALL + y + + + CONFIG_CGROUPS + y + + + CONFIG_CGROUP_BPF + y + + + CONFIG_CGROUP_CPUACCT + y + + + CONFIG_CGROUP_FREEZER + y + + + CONFIG_CGROUP_SCHED + y + + + CONFIG_CRYPTO_AES + y + + + CONFIG_CRYPTO_CBC + y + + + CONFIG_CRYPTO_ECB + y + + + CONFIG_CRYPTO_GCM + y + + + CONFIG_CRYPTO_HMAC + y + + + CONFIG_CRYPTO_MD5 + y + + + CONFIG_CRYPTO_NULL + y + + + CONFIG_CRYPTO_SHA1 + y + + + CONFIG_CRYPTO_SHA256 + y + + + CONFIG_CRYPTO_SHA512 + y + + + CONFIG_DEFAULT_SECURITY_SELINUX + y + + + CONFIG_DEVKMEM + n + + + CONFIG_DEVMEM + n + + + CONFIG_EMBEDDED + y + + + CONFIG_EPOLL + y + + + CONFIG_EVENTFD + y + + + CONFIG_FHANDLE + n + + + CONFIG_FUTEX + y + + + CONFIG_HARDENED_USERCOPY + y + + + CONFIG_HIGH_RES_TIMERS + y + + + CONFIG_IKCONFIG + y + + + CONFIG_IKCONFIG_PROC + y + + + CONFIG_INET + y + + + CONFIG_INET6_ESP + y + + + CONFIG_INET6_IPCOMP + y + + + CONFIG_INET6_XFRM_MODE_TRANSPORT + y + + + CONFIG_INET6_XFRM_MODE_TUNNEL + y + + + CONFIG_INET_DIAG_DESTROY + y + + + CONFIG_INET_ESP + y + + + CONFIG_INET_XFRM_MODE_TRANSPORT + y + + + CONFIG_INET_XFRM_MODE_TUNNEL + y + + + CONFIG_IP6_NF_FILTER + y + + + CONFIG_IP6_NF_IPTABLES + y + + + CONFIG_IP6_NF_MANGLE + y + + + CONFIG_IP6_NF_MATCH_RPFILTER + y + + + CONFIG_IP6_NF_RAW + y + + + CONFIG_IP6_NF_TARGET_REJECT + y + + + CONFIG_IPV6 + y + + + CONFIG_IPV6_MIP6 + y + + + CONFIG_IPV6_MULTIPLE_TABLES + y + + + CONFIG_IPV6_OPTIMISTIC_DAD + y + + + CONFIG_IPV6_ROUTER_PREF + y + + + CONFIG_IPV6_ROUTE_INFO + y + + + CONFIG_IPV6_VTI + y + + + CONFIG_IP_ADVANCED_ROUTER + y + + + CONFIG_IP_MULTICAST + y + + + CONFIG_IP_MULTIPLE_TABLES + y + + + CONFIG_IP_NF_ARPFILTER + y + + + CONFIG_IP_NF_ARPTABLES + y + + + CONFIG_IP_NF_ARP_MANGLE + y + + + CONFIG_IP_NF_FILTER + y + + + CONFIG_IP_NF_IPTABLES + y + + + CONFIG_IP_NF_MANGLE + y + + + CONFIG_IP_NF_MATCH_ECN + y + + + CONFIG_IP_NF_MATCH_TTL + y + + + CONFIG_IP_NF_NAT + y + + + CONFIG_IP_NF_RAW + y + + + CONFIG_IP_NF_SECURITY + y + + + CONFIG_IP_NF_TARGET_MASQUERADE + y + + + CONFIG_IP_NF_TARGET_NETMAP + y + + + CONFIG_IP_NF_TARGET_REDIRECT + y + + + CONFIG_IP_NF_TARGET_REJECT + y + + + CONFIG_MAGIC_SYSRQ + y + + + CONFIG_MEMCG + y + + + CONFIG_MEMCG_SWAP + y + + + CONFIG_MODULES + y + + + CONFIG_MODULE_UNLOAD + y + + + CONFIG_MODVERSIONS + y + + + CONFIG_NET + y + + + CONFIG_NETDEVICES + y + + + CONFIG_NETFILTER + y + + + CONFIG_NETFILTER_XT_MATCH_BPF + y + + + CONFIG_NETFILTER_XT_MATCH_COMMENT + y + + + CONFIG_NETFILTER_XT_MATCH_CONNLIMIT + y + + + CONFIG_NETFILTER_XT_MATCH_CONNMARK + y + + + CONFIG_NETFILTER_XT_MATCH_CONNTRACK + y + + + CONFIG_NETFILTER_XT_MATCH_HASHLIMIT + y + + + CONFIG_NETFILTER_XT_MATCH_HELPER + y + + + CONFIG_NETFILTER_XT_MATCH_IPRANGE + y + + + CONFIG_NETFILTER_XT_MATCH_LENGTH + y + + + CONFIG_NETFILTER_XT_MATCH_LIMIT + y + + + CONFIG_NETFILTER_XT_MATCH_MAC + y + + + CONFIG_NETFILTER_XT_MATCH_MARK + y + + + CONFIG_NETFILTER_XT_MATCH_PKTTYPE + y + + + CONFIG_NETFILTER_XT_MATCH_POLICY + y + + + CONFIG_NETFILTER_XT_MATCH_QTAGUID + y + + + CONFIG_NETFILTER_XT_MATCH_QUOTA + y + + + CONFIG_NETFILTER_XT_MATCH_QUOTA2 + y + + + CONFIG_NETFILTER_XT_MATCH_SOCKET + y + + + CONFIG_NETFILTER_XT_MATCH_STATE + y + + + CONFIG_NETFILTER_XT_MATCH_STATISTIC + y + + + CONFIG_NETFILTER_XT_MATCH_STRING + y + + + CONFIG_NETFILTER_XT_MATCH_TIME + y + + + CONFIG_NETFILTER_XT_MATCH_U32 + y + + + CONFIG_NETFILTER_XT_TARGET_CLASSIFY + y + + + CONFIG_NETFILTER_XT_TARGET_CONNMARK + y + + + CONFIG_NETFILTER_XT_TARGET_CONNSECMARK + y + + + CONFIG_NETFILTER_XT_TARGET_IDLETIMER + y + + + CONFIG_NETFILTER_XT_TARGET_MARK + y + + + CONFIG_NETFILTER_XT_TARGET_NFLOG + y + + + CONFIG_NETFILTER_XT_TARGET_NFQUEUE + y + + + CONFIG_NETFILTER_XT_TARGET_SECMARK + y + + + CONFIG_NETFILTER_XT_TARGET_TCPMSS + y + + + CONFIG_NETFILTER_XT_TARGET_TPROXY + y + + + CONFIG_NETFILTER_XT_TARGET_TRACE + y + + + CONFIG_NET_CLS_ACT + y + + + CONFIG_NET_CLS_U32 + y + + + CONFIG_NET_EMATCH + y + + + CONFIG_NET_EMATCH_U32 + y + + + CONFIG_NET_IPVTI + y + + + CONFIG_NET_KEY + y + + + CONFIG_NET_SCHED + y + + + CONFIG_NET_SCH_HTB + y + + + CONFIG_NFSD + n + + + CONFIG_NFS_FS + n + + + CONFIG_NF_CONNTRACK + y + + + CONFIG_NF_CONNTRACK_AMANDA + y + + + CONFIG_NF_CONNTRACK_EVENTS + y + + + CONFIG_NF_CONNTRACK_FTP + y + + + CONFIG_NF_CONNTRACK_H323 + y + + + CONFIG_NF_CONNTRACK_IPV4 + y + + + CONFIG_NF_CONNTRACK_IPV6 + y + + + CONFIG_NF_CONNTRACK_IRC + y + + + CONFIG_NF_CONNTRACK_NETBIOS_NS + y + + + CONFIG_NF_CONNTRACK_PPTP + y + + + CONFIG_NF_CONNTRACK_SANE + y + + + CONFIG_NF_CONNTRACK_SECMARK + y + + + CONFIG_NF_CONNTRACK_TFTP + y + + + CONFIG_NF_CT_NETLINK + y + + + CONFIG_NF_CT_PROTO_DCCP + y + + + CONFIG_NF_CT_PROTO_SCTP + y + + + CONFIG_NF_CT_PROTO_UDPLITE + y + + + CONFIG_NF_NAT + y + + + CONFIG_NF_SOCKET_IPV4 + y + + + CONFIG_NF_SOCKET_IPV6 + y + + + CONFIG_NO_HZ + y + + + CONFIG_PACKET + y + + + CONFIG_PM_WAKELOCKS + y + + + CONFIG_PPP + y + + + CONFIG_PPP_BSDCOMP + y + + + CONFIG_PPP_DEFLATE + y + + + CONFIG_PPP_MPPE + y + + + CONFIG_PREEMPT + y + + + CONFIG_PROC_FS + y + + + CONFIG_PROFILING + y + + + CONFIG_RTC_CLASS + y + + + CONFIG_RT_GROUP_SCHED + y + + + CONFIG_SECCOMP + y + + + CONFIG_SECCOMP_FILTER + y + + + CONFIG_SECURITY + y + + + CONFIG_SECURITY_NETWORK + y + + + CONFIG_SECURITY_PERF_EVENTS_RESTRICT + y + + + CONFIG_SECURITY_SELINUX + y + + + CONFIG_SHMEM + y + + + CONFIG_SIGNALFD + y + + + CONFIG_STAGING + y + + + CONFIG_SUSPEND + y + + + CONFIG_SYNC_FILE + y + + + CONFIG_SYSFS + y + + + CONFIG_SYSVIPC + n + + + CONFIG_TIMERFD + y + + + CONFIG_TUN + y + + + CONFIG_UID_SYS_STATS + y + + + CONFIG_UNIX + y + + + CONFIG_USB_CONFIGFS + y + + + CONFIG_USB_CONFIGFS_F_ACC + y + + + CONFIG_USB_CONFIGFS_F_AUDIO_SRC + y + + + CONFIG_USB_CONFIGFS_F_FS + y + + + CONFIG_USB_CONFIGFS_F_MIDI + y + + + CONFIG_USB_CONFIGFS_UEVENT + y + + + CONFIG_USB_GADGET + y + + + CONFIG_USB_SUPPORT + y + + + CONFIG_USELIB + n + + + CONFIG_XFRM_USER + y + + + + + + CONFIG_ARM + y + + + + CONFIG_OABI_COMPAT + n + + + + + + CONFIG_ARM64 + y + + + + CONFIG_ARMV8_DEPRECATED + y + + + CONFIG_CP15_BARRIER_EMULATION + y + + + CONFIG_SETEND_EMULATION + y + + + CONFIG_SWP_EMULATION + y + + + + 30 + 26.0 + 27.0 + 28.0 + + + 1.0 + + diff --git a/recovery/root/vendor/lib64/libqtikeymaster4.so b/recovery/root/vendor/lib64/libqtikeymaster4.so new file mode 100644 index 0000000..f5f173f Binary files /dev/null and b/recovery/root/vendor/lib64/libqtikeymaster4.so differ diff --git a/recovery/root/vendor/lib64/vendor.qti.hardware.tui_comm@1.0.so b/recovery/root/vendor/lib64/vendor.qti.hardware.tui_comm@1.0.so new file mode 100644 index 0000000..392e24d Binary files /dev/null and b/recovery/root/vendor/lib64/vendor.qti.hardware.tui_comm@1.0.so differ diff --git a/system.prop b/system.prop index aa9bfe9..0a66dff 100644 --- a/system.prop +++ b/system.prop @@ -1 +1,6 @@ ro.display.series=OnePlus 6T +ro.product.board=sdm845 +ro.board.platform=sdm845 +ro.build.version.release=9 +ro.build.version.security_patch=2018-11-01 +