sys-firmware/ivsc-firmware - 9999 (EmilienMottet)

Search

Install

Install this version:

emerge -a =sys-firmware/ivsc-firmware-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =sys-firmware/ivsc-firmware-9999

Or alternatively:

emerge --autounmask-write -a =sys-firmware/ivsc-firmware-9999

Package Information

Description:
This provides the necessary firmware for Intel iVSC
Homepage:
https://github.com/intel/ivsc-firmware
License:
ivsc-firmware

Ebuild Details

Version EAPI Keywords Slot
9999 8 ~amd64 0
View Raw Ebuild
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit git-r3

DESCRIPTION="This provides the necessary firmware for Intel iVSC"
HOMEPAGE="https://github.com/intel/ivsc-firmware"
EGIT_REPO_URI="https://github.com/intel/ivsc-firmware.git"

LICENSE="ivsc-firmware"
SLOT="0"
KEYWORDS="~amd64"

RDEPEND="media-video/ipu6-drivers"

S=${WORKDIR}/${P}/firmware

src_install() {
	for i in *.bin; do
		insinto /lib/firmware/vsc/soc_a1
		insopts -m644
		newins "${i}" $(echo "${i}" | sed 's|\.bin|_a1\.bin|')
		insinto /lib/firmware/vsc/soc_a1_prod
		insopts -m644
		newins "${i}" $(echo "${i}" | sed 's|\.bin|_a1_prod\.bin|')
	done
}

Inherited Eclasses

Dependencies

RDEPEND

media-video/ipu6-drivers