mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-28 16:27:50 +00:00
Merge pull request #869 from devimc/topic/snap/fixSnap
snap: fix snap in launchpad
This commit is contained in:
commit
e76cf80b50
@ -269,15 +269,14 @@ get_default_kernel_config() {
|
|||||||
|
|
||||||
get_config_and_patches() {
|
get_config_and_patches() {
|
||||||
if [ -z "${patches_path}" ]; then
|
if [ -z "${patches_path}" ]; then
|
||||||
info "Clone config and patches"
|
|
||||||
patches_path="${default_patches_dir}"
|
patches_path="${default_patches_dir}"
|
||||||
if [ ! -d "${patches_path}" ]; then
|
if [ ! -d "${patches_path}" ]; then
|
||||||
tag="${kata_version}"
|
tag="${kata_version}"
|
||||||
git clone "https://${patches_repo}.git" "${patches_repo_dir}"
|
git clone -q "https://${patches_repo}.git" "${patches_repo_dir}"
|
||||||
pushd "${patches_repo_dir}" >> /dev/null
|
pushd "${patches_repo_dir}" >> /dev/null
|
||||||
if [ -n $tag ] ; then
|
if [ -n $tag ] ; then
|
||||||
info "checking out $tag"
|
info "checking out $tag"
|
||||||
git checkout $tag
|
git checkout -q $tag
|
||||||
fi
|
fi
|
||||||
popd >> /dev/null
|
popd >> /dev/null
|
||||||
fi
|
fi
|
||||||
|
@ -1 +1 @@
|
|||||||
59
|
60
|
||||||
|
@ -228,11 +228,11 @@ parts:
|
|||||||
export DEBUG=1
|
export DEBUG=1
|
||||||
case "$(uname -m)" in
|
case "$(uname -m)" in
|
||||||
aarch64|ppc64le|s390x)
|
aarch64|ppc64le|s390x)
|
||||||
sudo -E PATH=$PATH DISTRO=alpine make initrd
|
sudo -E PATH=$PATH make initrd DISTRO=alpine
|
||||||
;;
|
;;
|
||||||
x86_64)
|
x86_64)
|
||||||
# In some build systems it's impossible to build a rootfs image, try with the initrd image
|
# In some build systems it's impossible to build a rootfs image, try with the initrd image
|
||||||
sudo -E PATH=$PATH DISTRO=clearlinux make image || sudo -E PATH=$PATH DISTRO=alpine make initrd
|
sudo -E PATH=$PATH make image DISTRO=clearlinux || sudo -E PATH=$PATH make initrd DISTRO=alpine
|
||||||
;;
|
;;
|
||||||
*) echo "unsupported architecture: $(uname -m)"; exit 1;;
|
*) echo "unsupported architecture: $(uname -m)"; exit 1;;
|
||||||
esac
|
esac
|
||||||
|
Loading…
Reference in New Issue
Block a user