mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-06 18:09:44 +03:00
This fixes a kernel 5.1.x compatibility issue. The only changes
between 0.12.1 and 0.12.2 are:
d3b198ef6f57ca512fb25147c9d85b922fd4651a Released v0.12.2
376c2c28bd7d4470cd92ff646d6087ca70cd9d2e fixed typo
6edc4b164b1f05bee74cb507a4f50776a65ceb73 mentioned support for 5.0.0
0b8feb80fdef9a415d8250bca1790b3ff23e8391 Replace v4l2_get_timestamp with ktime_get_ts(64)
541e3bc7aaf46dc9a21f92c7f527397fce03dfd8 Update README.md
So the only functional change is the actual ktime_get_ts() fix, which
is needed for Linux 5.1 compatibility. Therefore, bumping is pretty
much the same as backporting just this commit.
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
[Thomas: extend the commit log]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 7a8460d45b)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
20 lines
603 B
Makefile
20 lines
603 B
Makefile
################################################################################
|
|
#
|
|
# v4l2loopback
|
|
#
|
|
################################################################################
|
|
|
|
V4L2LOOPBACK_VERSION = v0.12.2
|
|
V4L2LOOPBACK_SITE = $(call github,umlaeute,v4l2loopback,$(V4L2LOOPBACK_VERSION))
|
|
V4L2LOOPBACK_LICENSE = GPL-2.0+
|
|
V4L2LOOPBACK_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_PACKAGE_V4L2LOOPBACK_UTILS),y)
|
|
define V4L2LOOPBACK_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/utils/v4l2loopback-ctl $(TARGET_DIR)/usr/bin/v4l2loopback-ctl
|
|
endef
|
|
endif
|
|
|
|
$(eval $(kernel-module))
|
|
$(eval $(generic-package))
|