2024-07-09 19:31:02 +03:00
|
|
|
# Copyright 1999-2024 Gentoo Authors
|
2022-06-17 18:35:28 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=8
|
|
|
|
|
|
|
|
inherit estack linux-info
|
|
|
|
|
|
|
|
DESCRIPTION="Bootconfig tools for kernel command line to support key-value"
|
|
|
|
HOMEPAGE="https://kernel.org/"
|
|
|
|
|
|
|
|
LINUX_V="${PV:0:1}.x"
|
|
|
|
if [[ ${PV} == *_rc* ]] ; then
|
|
|
|
LINUX_VER=$(ver_cut 1-2).$(($(ver_cut 3)-1))
|
|
|
|
PATCH_VERSION=$(ver_cut 1-3)
|
|
|
|
LINUX_PATCH=patch-${PV//_/-}.xz
|
|
|
|
SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/testing/${LINUX_PATCH}
|
|
|
|
https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/testing/v${PATCH_VERSION}/${LINUX_PATCH}"
|
|
|
|
elif [[ ${PV} == *.*.* ]] ; then
|
|
|
|
# stable-release series
|
|
|
|
LINUX_VER=$(ver_cut 1-2)
|
|
|
|
LINUX_PATCH=patch-${PV}.xz
|
|
|
|
SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_PATCH}"
|
|
|
|
else
|
|
|
|
LINUX_VER=${PV}
|
|
|
|
fi
|
|
|
|
|
|
|
|
LINUX_SOURCES="linux-${LINUX_VER}.tar.xz"
|
|
|
|
SRC_URI+=" https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_SOURCES}"
|
2024-07-09 19:31:02 +03:00
|
|
|
S_K="${WORKDIR}/linux-${LINUX_VER}"
|
|
|
|
S="${S_K}/tools/bootconfig"
|
2022-06-17 18:35:28 +03:00
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~riscv"
|
|
|
|
IUSE="examples"
|
|
|
|
|
|
|
|
BDEPEND="
|
|
|
|
${LINUX_PATCH+dev-util/patchutils}
|
|
|
|
"
|
|
|
|
|
|
|
|
DEPEND="${RDEPEND}
|
|
|
|
>=sys-kernel/linux-headers-5.10
|
|
|
|
"
|
|
|
|
|
|
|
|
CONFIG_CHECK="~BOOT_CONFIG"
|
|
|
|
|
2024-07-09 19:31:02 +03:00
|
|
|
PATCHES=( "${FILESDIR}"/${PN}-5.18-cflags.patch )
|
2022-06-17 18:35:28 +03:00
|
|
|
|
|
|
|
src_unpack() {
|
|
|
|
local paths=(
|
|
|
|
tools/arch tools/build tools/include tools/lib tools/bootconfig tools/scripts
|
|
|
|
scripts include lib "arch/*/lib"
|
|
|
|
)
|
|
|
|
|
|
|
|
# We expect the tar implementation to support the -j option (both
|
|
|
|
# GNU tar and libarchive's tar support that).
|
|
|
|
echo ">>> Unpacking ${LINUX_SOURCES} (${paths[*]}) to ${PWD}"
|
|
|
|
tar --wildcards -xpf "${DISTDIR}"/${LINUX_SOURCES} \
|
|
|
|
"${paths[@]/#/linux-${LINUX_VER}/}" || die
|
|
|
|
|
|
|
|
if [[ -n ${LINUX_PATCH} ]] ; then
|
|
|
|
eshopts_push -o noglob
|
|
|
|
ebegin "Filtering partial source patch"
|
2024-08-24 15:16:59 +03:00
|
|
|
xzcat "${DISTDIR}"/${LINUX_PATCH} | filterdiff -p1 ${paths[@]/#/-i} > ${P}.patch
|
|
|
|
assert -n "Unpacking to ${P} from ${DISTDIR}/${LINUX_PATCH} failed"
|
2022-06-17 18:35:28 +03:00
|
|
|
eend $? || die "filterdiff failed"
|
2024-08-24 15:16:59 +03:00
|
|
|
test -s ${P}.patch || die "patch is empty?!"
|
2022-06-17 18:35:28 +03:00
|
|
|
eshopts_pop
|
|
|
|
fi
|
|
|
|
|
|
|
|
local a
|
|
|
|
for a in ${A}; do
|
|
|
|
[[ ${a} == ${LINUX_SOURCES} ]] && continue
|
|
|
|
[[ ${a} == ${LINUX_PATCH} ]] && continue
|
|
|
|
unpack ${a}
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
default
|
|
|
|
if [[ -n ${LINUX_PATCH} ]] ; then
|
|
|
|
pushd "${S_K}" >/dev/null || die
|
|
|
|
eapply "${WORKDIR}"/${P}.patch
|
|
|
|
popd || die
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
src_compile() {
|
|
|
|
emake bootconfig
|
|
|
|
}
|
|
|
|
|
|
|
|
src_test() {
|
|
|
|
:
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
dobin bootconfig
|
|
|
|
|
|
|
|
if use examples; then
|
|
|
|
dodoc -r scripts
|
|
|
|
|
|
|
|
docinto examples
|
|
|
|
dodoc -r samples/*
|
|
|
|
fi
|
|
|
|
}
|