mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-16 07:01:08 +00:00
63 lines
1.8 KiB
Bash
63 lines
1.8 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit mount-boot
|
|
|
|
# Go to e.g. https://github.com/raspberrypi/firmware/tree/1.20211029/modules
|
|
# for the latest tag to see which kernel version it corresponds to.
|
|
|
|
DESCRIPTION="Raspberry Pi (all versions) kernel and modules"
|
|
HOMEPAGE="https://github.com/raspberrypi/firmware"
|
|
if [[ ${PV} == 9999 ]]; then
|
|
EGIT_REPO_URI="https://github.com/raspberrypi/firmware"
|
|
EGIT_CLONE_TYPE="shallow"
|
|
inherit git-r3
|
|
else
|
|
[[ $(ver_cut 4) == p ]] || die "Unsupported version format, tweak the ebuild."
|
|
MY_PV="1.$(ver_cut 5)"
|
|
|
|
SRC_URI="https://github.com/raspberrypi/firmware/archive/${MY_PV}.tar.gz -> raspberrypi-firmware-${MY_PV}.tar.gz"
|
|
S="${WORKDIR}/firmware-${MY_PV}"
|
|
KEYWORDS="-* ~arm ~arm64"
|
|
fi
|
|
|
|
LICENSE="GPL-2 raspberrypi-videocore-bin"
|
|
SLOT="0"
|
|
RESTRICT="binchecks strip"
|
|
|
|
RDEPEND="sys-boot/raspberrypi-firmware"
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
if [[ ${PV} != 9999 ]]; then
|
|
local expected_kernel_version="$(ver_cut 1-3)+"
|
|
local found_kernel_version=( "${S}"/modules/$(ver_cut 1).*.*+ )
|
|
|
|
found_kernel_version=${found_kernel_version[0]}
|
|
found_kernel_version=${found_kernel_version##*/}
|
|
|
|
if [[ ${expected_kernel_version} != ${found_kernel_version} ]] ; then
|
|
eerror "Expected kernel version: ${expected_kernel_version}"
|
|
eerror "Found kernel version: ${found_kernel_version}"
|
|
die "Please fix ebuild version to contain ${found_kernel_version}!"
|
|
fi
|
|
|
|
if [[ ! -d "${S}"/modules/${expected_kernel_version} ]] ; then
|
|
eerror "Kernel module directory is missing!"
|
|
die "${S}/modules/${expected_kernel_version} not found!"
|
|
fi
|
|
fi
|
|
}
|
|
|
|
src_install() {
|
|
insinto /lib/modules
|
|
doins -r modules/*
|
|
insinto /boot
|
|
doins boot/*.img
|
|
|
|
doins boot/*.dtb
|
|
doins -r boot/overlays
|
|
}
|