![]() |
Any Interest in ARMv7 builds - Printable Version +- Snakeoil Forums (https://forums.snakeoil-os.net) +-- Forum: Snakeoil Topics (https://forums.snakeoil-os.net/Forum-Snakeoil-Topics) +--- Forum: Feature Requests (https://forums.snakeoil-os.net/Forum-Feature-Requests) +--- Thread: Any Interest in ARMv7 builds (/Thread-Any-Interest-in-ARMv7-builds) |
RE: Any Interest in ARMv7 builds - agent_kith - 27-Sep-2018 Need a kernel with LIRC support. I can build one for you later tonight, are you using the stock kernel at the moment, or a special one? Edit: What am I asking? This is RPi.. There is only one kernel!!! I'd rebuild the kernel tonight with LIRC support. RE: Any Interest in ARMv7 builds - Bromf - 27-Sep-2018 Thanks.! I suspected that but was trying all options before imposing on your valuable time... Once I have that kernel I expect Lirc to install and work so will map some buttons for play, pause, playlists, favourite web streams and shutdown/reboot....if that's all good will start on the write up in Walkthroughs. I/R remote and a display makes for great streaming and ease of use....always ready..no need to grab a phone/pc, open a browser, connect, then change stations....1 button is all that's needed.. ![]() RE: Any Interest in ARMv7 builds - Bromf - 28-Sep-2018 Any joy with the Lirc kernel ? ![]() RE: Any Interest in ARMv7 builds - agent_kith - 28-Sep-2018 (28-Sep-2018, 03:19 AM)Bromf Wrote: Any joy with the Lirc kernel ?I'd send you a PM soon on that... Hit some snag on the uploading the kernel via the WebApp so you'd have to do this manually unfortunately... RE: Any Interest in ARMv7 builds - Bromf - 28-Sep-2018 Progress.....but still hitting the same modules error.... Code: pi@snakeoil:~ $ dmesg | grep lirc I can find a reference here... https://askubuntu.com/questions/871336/switching-from-ovh-kernel-to-default-kernel-without-reinstalling-ubuntu/971300 https://unix.stackexchange.com/questions/438940/lsmod-gives-error-could-not-get-list-of-modules-on-debian-running-on-wsl I have triple checked hardware, 2 different Pi, 2 different remotes, 2 different receivers.... all works with another player o/s... and no 'modules' found here... Code: pi@snakeoil:~ $ cd /proc/ RE: Any Interest in ARMv7 builds - agent_kith - 28-Sep-2018 The no 'modules' part is fine as Snakeoil kernels built the drivers right inside the kernel, instead of as a loadable module. It is already detecting the IR or input. But I suspect you're missing the user space software. Try and run this: Code: sudo apt install -y lirc Then run: Code: ps aux | grep lirc RE: Any Interest in ARMv7 builds - Bromf - 28-Sep-2018 Already have that.... see prior post .... I have installed Lirc on Pi many times before and even have 2 methods. I've tried both and still it errors re modules... Code: pi@snakeoil:~ $ sudo apt install -y lirc RE: Any Interest in ARMv7 builds - agent_kith - 28-Sep-2018 (28-Sep-2018, 10:42 AM)Bromf Wrote: Already have that.... see prior post .... I have installed Lirc on Pi many times before and even have 2 methods. I've tried both and still it errors re modules...I wonder if LIRC only works if you're using modules... Or maybe I forgot to include another important module. What happens when you just run lircd from the command line? RE: Any Interest in ARMv7 builds - Bromf - 28-Sep-2018 pi@snakeoil:~ $ lircd can't open or create /var/run/lirc/lircd.pid: Permission denied pi@snakeoil:~ $ sudo lircd lircd: there seems to already be a lircd process with pid 1469 lircd: otherwise delete stale lockfile /var/run/lirc/lircd.pid pi@snakeoil:~ $ RE: Any Interest in ARMv7 builds - agent_kith - 28-Sep-2018 (28-Sep-2018, 11:13 AM)Bromf Wrote: pi@snakeoil:~ $ lircdRun: Code: ps aux|grep 1469 See if it's really runnig, if it's not, delete the pid file: Code: sudo rm -f /var/run/lirc/lircd.pid Then start lircd again and see what error pops up. |