[bin] add generic bump script for kernel-dependent pkgs

This commit is contained in:
Fabio Erculiani 2011-11-22 11:11:26 +01:00
parent 4f8abc3d5e
commit 1d4d40e95f
1 changed files with 26 additions and 0 deletions

26
bin/bump_kernel_mod_package Executable file
View 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..."