Giter Club home page Giter Club logo

overlay's Introduction

My Gentoo overlay

This overlay contains some ebuilds I made to provide Intel IPU6 webcam support on Gentoo. It uses the kernel module ebuild from the fol4 repository and the other packages are based on the Fedora source rpms.

Installation

First add the repository using eselect:

root # eselect repository add bt4 git https://github.com/bt4/overlay.git
root # emaint sync -r bt4

Next you need to emerge the following packages:

root # emerge -av media-video/ipu6-drivers sys-firmware/ipu6-camera-bins sys-firmware/ivsc-firmware sys-apps/ipu6-camera-hal media-plugins/gst-plugins-icamerasrc

At this point you should probably reboot and check that the modules have loaded:

$ dmesg | grep ipu6-isys

Should output something like:

[   16.433652] intel-ipu6-isys intel-ipu6-isys0: bind ov01a10 20-0036 nlanes is 1 port is 2
[   16.453412] intel-ipu6-isys intel-ipu6-isys0: All sensor registration completed.

However, in my case this is not sufficient. It appears that the modules must be loaded in a specific order and I haven't figured out how to force them load properly on boot. I have tried putting some of the modules into initramfs to make them load earlier, but as of the time of writing I have not had any success.

After boot I have to remove and reload the modules manaully as follows:

root # rmmod -f intel_ipu6_psys intel_ipu6_isys intel_ipu6 && modprobe -a intel_ipu6 intel_ipu6_isys intel_ipu6_psys

After running the above command check dmesg again to check for the message "All sensor registration completed". If it has worked then the next thing is to check that udev has added a symlnk to the correct libcamhal.so:

$ ls -l /run/libcamhal.so
lrwxrwxrwx 1 root root 30 Jun 28 16:53 /run/libcamhal.so -> /usr/lib64/ipu6ep/libcamhal.so

Depending on the version of camera you will either see /usr/lib64/ipu6ep or /usr/lib64/ipu6 as the target folder.

If the above symlink is in place then we can test the camera using gstreamer:

$ sudo GST_DEBUG=2 gst-launch-1.0 icamerasrc buffer-count=7 ! video/x-raw,format=NV12,width=1280,height=720 ! videoconvert ! ximagesink

This should display the image from your webcam in a new window.

Currently gstreamer is the only application which knows how to talk to the IPU6 cameras (via the icamerasrc plugin). In order to use the camera with other programmes (e.g. Firefox) you need to install v4l2loopback and v4l2-relayd. The idea is that v4l2-relayd will run gstreamer in the background and Firefox can then connect to this "virtual" webcam it as if it was a real webcam.

Install the two packages:

root # emerge -av media-video/v4l2loopback media-video/v4l2-relayd

You can then start v4l2-relayd using systemd:

root # systemctl enable v4l2-relayd
root # systemctl start v4l2-relayd

Depending on your hardware v4l2-relayd might not start with the default configuration. Run systemctl status v4l2-relayd to see if it works. If not, the configuration file at /etc/default/v4l2-relayd has to be edited.

# Example for some Dell XPS laptops
CARD_LABEL="Intel MIPI Camera"

Run the following command to get a list of names of all devices:

$ cat /sys/devices/virtual/video4linux/video*/name

At this point you should can test the webcam in Firefox at: https://mozilla.github.io/webrtc-landing/gum_test.html

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.