Commit 27cc55bf by Santiago Ruano Rincón Committed by Stéphane Graber

templates/lxc-debian.in: handle ppc hostarch -> powerpc

parent fb43e05a
...@@ -518,6 +518,8 @@ elif [ "$arch" = "x86_64" ]; then ...@@ -518,6 +518,8 @@ elif [ "$arch" = "x86_64" ]; then
arch="amd64" arch="amd64"
elif [ "$arch" = "armv7l" ]; then elif [ "$arch" = "armv7l" ]; then
arch="armhf" arch="armhf"
elif [ "$arch" = "ppc" ]; then
arch="powerpc"
elif [ "$arch" = "ppc64le" ]; then elif [ "$arch" = "ppc64le" ]; then
arch="ppc64el" arch="ppc64el"
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment