mirror of
https://github.com/dguglielmi/sunny-overlay.git
synced 2025-12-06 13:52:40 +01:00
36 lines
709 B
Bash
36 lines
709 B
Bash
# 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
|
|
}
|