├── .gitattributes ├── .gitignore ├── LICENSE ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── cfgs ├── pixel_6 │ ├── cfgdb-whi-220727-B-8875237 │ │ └── cfg.db │ ├── cfgdb-whi-220830-B-9008086 │ │ └── cfg.db │ ├── cfgdb-whi-221101-B-9242015 │ │ └── cfg.db │ ├── cfgdb-whi-230302-B-9675756 │ │ └── cfg.db │ ├── cfgdb-whi-230323-B-9800744 │ │ └── cfg.db │ ├── cfgdb-whi-230428-B-10034304 │ │ └── cfg.db │ └── cfgdb-whi-230818-B-10678034 │ │ └── cfg.db └── pixel_7 │ ├── cfgdb-whipro-221028-B-9229469 │ └── cfg.db │ ├── cfgdb-whipro-230210-B-9589366 │ └── cfg.db │ ├── cfgdb-whipro-230323-B-9800995 │ └── cfg.db │ ├── cfgdb-whipro-230427-B-10022403 │ └── cfg.db │ └── cfgdb-whipro_r16-230818-B-10680050 │ └── cfg.db ├── changelog.md ├── customize.sh ├── info.txt ├── module.prop ├── system └── vendor │ └── firmware │ └── carrierconfig │ └── placeholder └── update.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Displax/modem-fix/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Displax/modem-fix/HEAD/LICENSE -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Displax/modem-fix/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Displax/modem-fix/HEAD/README.md -------------------------------------------------------------------------------- /cfgs/pixel_6/cfgdb-whi-220727-B-8875237/cfg.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Displax/modem-fix/HEAD/cfgs/pixel_6/cfgdb-whi-220727-B-8875237/cfg.db -------------------------------------------------------------------------------- /cfgs/pixel_6/cfgdb-whi-220830-B-9008086/cfg.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Displax/modem-fix/HEAD/cfgs/pixel_6/cfgdb-whi-220830-B-9008086/cfg.db -------------------------------------------------------------------------------- /cfgs/pixel_6/cfgdb-whi-221101-B-9242015/cfg.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Displax/modem-fix/HEAD/cfgs/pixel_6/cfgdb-whi-221101-B-9242015/cfg.db -------------------------------------------------------------------------------- /cfgs/pixel_6/cfgdb-whi-230302-B-9675756/cfg.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Displax/modem-fix/HEAD/cfgs/pixel_6/cfgdb-whi-230302-B-9675756/cfg.db -------------------------------------------------------------------------------- /cfgs/pixel_6/cfgdb-whi-230323-B-9800744/cfg.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Displax/modem-fix/HEAD/cfgs/pixel_6/cfgdb-whi-230323-B-9800744/cfg.db -------------------------------------------------------------------------------- /cfgs/pixel_6/cfgdb-whi-230428-B-10034304/cfg.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Displax/modem-fix/HEAD/cfgs/pixel_6/cfgdb-whi-230428-B-10034304/cfg.db -------------------------------------------------------------------------------- /cfgs/pixel_6/cfgdb-whi-230818-B-10678034/cfg.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Displax/modem-fix/HEAD/cfgs/pixel_6/cfgdb-whi-230818-B-10678034/cfg.db -------------------------------------------------------------------------------- /cfgs/pixel_7/cfgdb-whipro-221028-B-9229469/cfg.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Displax/modem-fix/HEAD/cfgs/pixel_7/cfgdb-whipro-221028-B-9229469/cfg.db -------------------------------------------------------------------------------- /cfgs/pixel_7/cfgdb-whipro-230210-B-9589366/cfg.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Displax/modem-fix/HEAD/cfgs/pixel_7/cfgdb-whipro-230210-B-9589366/cfg.db -------------------------------------------------------------------------------- /cfgs/pixel_7/cfgdb-whipro-230323-B-9800995/cfg.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Displax/modem-fix/HEAD/cfgs/pixel_7/cfgdb-whipro-230323-B-9800995/cfg.db -------------------------------------------------------------------------------- /cfgs/pixel_7/cfgdb-whipro-230427-B-10022403/cfg.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Displax/modem-fix/HEAD/cfgs/pixel_7/cfgdb-whipro-230427-B-10022403/cfg.db -------------------------------------------------------------------------------- /cfgs/pixel_7/cfgdb-whipro_r16-230818-B-10680050/cfg.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Displax/modem-fix/HEAD/cfgs/pixel_7/cfgdb-whipro_r16-230818-B-10680050/cfg.db -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Displax/modem-fix/HEAD/changelog.md -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Displax/modem-fix/HEAD/customize.sh -------------------------------------------------------------------------------- /info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Displax/modem-fix/HEAD/info.txt -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Displax/modem-fix/HEAD/module.prop -------------------------------------------------------------------------------- /system/vendor/firmware/carrierconfig/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Displax/modem-fix/HEAD/update.json --------------------------------------------------------------------------------