Yes, the source code situation is very unfortunate. I'd love for this to be open source so other people could contribute to development as well. Still, almost all of this is open source if you want to read it though - LineageOS code base itself is open source and I'm also sharing source code I'm obligated to provide (i.e. Linux kernel that is released under GPLv2). There's just parts of the Raspberry Pi device specific configuration I've kept to myself.sjuniormachado wrote: ↑Thu May 14, 2020 1:31 pmHey there.
First of all, best regards from Brazil and sorry for my english.
Your distro is awesome. I'm using this for a academic project.
I read about why you don't share the source code, it's ok.
I'm using the Raspberry PI 4 with a touch monitor of 15.6", everything is ok but when i rotate the screen with display_rotate = 3 the touch doesn't get rotated.
I read about this in many places but i can't get this working with your distro.
Can you help me ?
Where i can change the matrix of the display?
Thanks a lot.
If you add display_rotate to config.txt, it will only rotate the display output. I haven't looked into what driver USB touchscreens(?) use and how you could rotate it. Instead other option is to let Android handle the rotation. This build uses forced default orientation but you can override this behavior with a system property. There's third party apps you can use to change orientation after that or use the notification tile to lock portrait orientation. This should take care both the display and touch input.
Code: Select all
su
mount -o rw,remount /system
echo "config.override_forced_orient=true" >> /system/build.prop