You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
livecd-rootfs/live-build/ubuntu-cpc/hooks.d/chroot/002-add-foreign-kernel.chro...

13 lines
264 B

#!/bin/sh
set -ex
echo "I: Checking if we are i386 and amd64 architecture should be enabled"
if [ "$(dpkg --print-architecture)" = "i386" ]; then
echo "I: Enabling amd64 multiarch support on i386"
dpkg --add-architecture amd64
apt-get -y update
fi