Lines Matching refs:arch
42 arch=$(uname -m)
69 [ -f /etc/arch-release ] && is_arch=true
100 arch-chroot "${rootfs_path}" /bin/bash -s << EOF
152 grep -q "^lxc.arch" "${config}" 2>/dev/null \
153 || echo "lxc.arch = ${arch}" >> "${config}"
167 [ "${arch}" != "$(uname -m)" ] && different_arch=true
172 sed -e "s:Architecture =.*:Architecture = ${arch}:g" \
175 sed -e "s:\(x86_64\|\$arch\):${arch}:g" \
188 sed -i -e "s:Architecture =.*:Architecture = ${arch}:g" \
201 ${1} -n|--name=<container_name> [-p|--path=<path>] [-a|--arch=<arch of the container>]
215 -a,--arch use specified architecture instead of host's architecture
222 options=$(getopt -o hp:P:e:d:n:c:a:r: -l help,rootfs:,path:,packages:,enable_units:,disable_units:,name:,config:,arch:,root_password: -- "${@}")
240 -a|--arch) arch=${2}; shift 2;;