1
0
mirror of https://github.com/dguglielmi/sunny-overlay.git synced 2025-12-06 07:22:38 +01:00

media-video/vision-drivers: add new ebuild

This commit is contained in:
2025-10-13 19:13:06 +02:00
parent 64ba264c59
commit bf515db771
3 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST vision-drivers-0_p20250606.tar.gz 20999 BLAKE2B 53670f57433c681d6728819af80e54b95b9a4e9a44af57577e1c3f81295808886cdb75a135447da3da1d4d7e1b07d0d84121b3ba24f16c231ff17e624f47278b SHA512 a50fc6fb29a084aa512cc87c2c074bf82db829db7691d1f30f2902135e22084636055fee0df7930592975a99675a8aadb1f5cbc9ab4d0f261e78c453b4e8e288

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>david.guglielmi@gmail.com</email>
<name>David GUGLIELMI</name>
</maintainer>
<upstream>
<remote-id type="github">intel/vision-drivers</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,35 @@
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
COMMIT_ID="92a717e02ef30f4b5fad99271d0ec77c3364e4ea"
inherit linux-mod-r1 toolchain-funcs
DESCRIPTION="Intel Vision Driver for Intel Lunar Lake (LNL) CVS-enabled Platforms"
HOMEPAGE="https://github.com/intel/vision-drivers"
SRC_URI="https://github.com/intel/${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${COMMIT_ID}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
CONFIG_CHECK="
GPIO_LJCA
"
pkg_setup() {
linux-mod-r1_pkg_setup
export KERNELRELEASE=${KV_FULL}
}
src_compile() {
local modlist=(
intel_cvs=kernel/drivers/misc:::all
)
linux-mod-r1_src_compile
}