Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mhdzumair/device_woods_oreo
Device tree for Motorola Moto E4 (woods)
https://github.com/mhdzumair/device_woods_oreo
Last synced: 10 days ago
JSON representation
Device tree for Motorola Moto E4 (woods)
- Host: GitHub
- URL: https://github.com/mhdzumair/device_woods_oreo
- Owner: mhdzumair
- Created: 2019-06-20T17:59:27.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-06-20T18:09:16.000Z (over 5 years ago)
- Last Synced: 2023-05-21T04:19:21.009Z (over 1 year ago)
- Language: C
- Size: 1.1 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Device Tree for Motorola E4 (8.0 , 3.18.35+)
The Moto E4 (codenamed _"woods"_) is a mid-range smartphone from Motorola.
![Moto E4](https://github.com/dev4wds/local_manifest/raw/los-14.1/device/motorola-moto-e4.jpg "Moto E4")Basic | Spec Sheet
-------:|:-------------------------
CPU | Quad-core 1.3 GHz Cortex-A53
Chipset | MediaTek MT6737
GPU | Mali-T720
Memory | 2GB RAM
Shipped Android Version | 7.1
Storage | 16GB
MicroSD | Up to 64GB
Battery | Li-Pol 2800mAh battery
Display | 720 x 1280 pixels, 5.0 inches
Camera | Main 8MP / Front 5MP, autofocus, LED flashCopyright 2017 - The LineageOS Project.
Thanks to olegsvs, danielhk, Zormax, darklord4822, xcore995, SRT.### Working:
- [x] Wifi
- [x] Sound
- [x] LiveDisplay
- [ ] Ril
- [ ] Codecs
- [ ] Camera, flashlight
- [x] Radio
- [ ] Fingerprint
- [ ] Bluetooth
- [x] Sensors
- [ ] Hotspot
- ...### NOTE :
_Before you use do the following, keep in mind that you do at your own risk !_
Apply these manual edit to lineage-15.1 source
before building the romwith nano editor, edit these files by Commenting the line :
in ( system/sepolicy/public )
`domain.te`
[ line number : `230` ]in ( system/core/init )
`init.cpp`
[ line number : `434` ]example :
Comment line : `230` with `#` infront.
`nano +230 system/sepolicy/public/domain.te`
Comment line : `434` with `/*` starting and `*/` closing
`nano +434 system/core/init/init.cpp`
:Sensors HAL (DO ONLY WHEN REQUIRED!)
when building with : `PRODUCT_PACKAGES += [email protected]` ,it's advisable to locate the `Sensors.cpp` $location :`hardware/interfaces/sensors/1.0/default/Sensors.cpp` and modify it from`CHECK_GE(getHalDeviceVersion(), SENSORS_DEVICE_API_VERSION_1_3);` to `CHECK_GE(getHalDeviceVersion(), SENSORS_DEVICE_API_VERSION_1_0);`
`nano +98 hardware/interfaces/sensors/1.0/default/Sensors.cpp`
see line here : https://github.com/LineageOS/android_hardware_interfaces/blob/621821f3191754678125a44a1f9b4dbd69f76541/sensors/1.0/default/Sensors.cpp#L98
- -