Skip to content
Snippets Groups Projects
Commit e7ecf4bc authored by Daniel Schulte's avatar Daniel Schulte
Browse files

Bugfix: Es gibt keinen 32-Bit signed Kernel

parent 5f4df152
No related branches found
No related tags found
No related merge requests found
......@@ -67,8 +67,10 @@ function install_packages()
# Some daily images do not have a kernel ?!?
#uncomment this if you remaster a daily build (fix kernel version!)
#aptitude reinstall linux-image-generic-lts-raring -y
#apt-cache depends linux-image-generic-lts-raring | tail -n+2 | awk '{print $NF}' | xargs aptitude reinstall -y
KERNEL_PKG=linux-signed-generic-lts-trusty
[ "$(uname -m)" == "x86_64" ] || KERNEL_PKG=linux-image-generic-lts-trusty
aptitude reinstall $KERNEL_PKG -y
apt-cache depends $KERNEL_PKG | tail -n+2 | awk '{print $NF}' | xargs aptitude reinstall -y
install_packages_from_file "$CONTRIB_DIR/pre_installed_packages" ""
install_packages_from_file "$CONTRIB_DIR/pre_installed_packages.without-recommends" "--without-recommends"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment