build/bin/bump_vbox

29 lines
1.1 KiB
Plaintext
Raw Normal View History

2011-07-14 22:05:05 +02:00
#!/bin/sh
kernels="2.6.36-sabayon 2.6.37-sabayon 2.6.38-sabayon 2.6.39-sabayon 3.0.0-fusion"
2011-07-26 12:40:39 +02:00
running_kernel="3.0.0-sabayon"
2011-07-14 22:05:05 +02:00
packages="app-emulation/virtualbox-guest-additions app-emulation/virtualbox-modules x11-drivers/xf86-video-virtualbox"
2011-08-07 22:42:20 +02:00
non_tagged_packages="xf86-input-virtualbox virtualbox-bin"
2011-07-14 22:05:05 +02:00
# build for latest kernel
2011-08-07 22:42:20 +02:00
KERNEL_DIR="/usr/src/linux-${running_kernel}" emerge $packages ${non_tagged_packages}
2011-07-14 22:05:05 +02:00
echo -5 | etc-update
2011-08-07 22:42:20 +02:00
eit add ${packages} ${non_tagged_packages}
2011-07-14 22:05:05 +02:00
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 ${packages} || ( 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
2011-08-07 22:42:20 +02:00
eit fit ${built_pkgs} || ( echo "ouch unable to inject" && exit 3 )
2011-07-14 22:05:05 +02:00
echo
2011-08-07 22:42:20 +02:00
eit search "#${kernel}" -qv | sort | uniq
2011-07-14 22:05:05 +02:00
echo
done
2011-08-07 22:42:20 +02:00
echo "Now you should remove old packages"
2011-07-14 22:05:05 +02:00
echo "PLEASE also see /etc/entropy/packages/packages.server.dep_rewrite"