[bin] add generic bump script for kernel-dependent pkgs
This commit is contained in:
parent
4f8abc3d5e
commit
1d4d40e95f
26
bin/bump_kernel_mod_package
Executable file
26
bin/bump_kernel_mod_package
Executable file
@ -0,0 +1,26 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
. /sabayon/bin/kernels.inc
|
||||||
|
|
||||||
|
if [ "${#}" -lt 1 ]; then
|
||||||
|
echo "${0} <package> <package> ..." >&2 /dev/null
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# build for latest kernel
|
||||||
|
KERNEL_DIR="/usr/src/linux-${running_kernel}" "${@}"
|
||||||
|
echo -5 | etc-update
|
||||||
|
eit commit
|
||||||
|
|
||||||
|
for kernel in $kernels; do
|
||||||
|
if [ "${kernel}" = "${running_kernel}" ]; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
rm -rf /usr/portage/packages/*
|
||||||
|
KERNEL_DIR="/usr/src/linux-${kernel}" emerge -B "${@}" || { echo "ouch unable to build" && exit 1; }
|
||||||
|
built_pkgs=$(find /usr/portage/packages -name "*.tbz2" | xargs echo)
|
||||||
|
[[ -z "${built_pkgs}" ]] && echo "ouch no kernel pkgs" && exit 2
|
||||||
|
eit inject ${built_pkgs} || { echo "ouch unable to inject" && exit 3; }
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "Now you should remove old packages..."
|
Loading…
Reference in New Issue
Block a user