File tree Expand file tree Collapse file tree 1 file changed +8
-13
lines changed Expand file tree Collapse file tree 1 file changed +8
-13
lines changed Original file line number Diff line number Diff line change 22# ###############################################################################
33#
44# Linux Deploy CLI
5- # (C) 2012-2018 Anton Skshidlevsky <meefik@gmail.com>, GPLv3
5+ # (C) 2012-2019 Anton Skshidlevsky <meefik@gmail.com>, GPLv3
66#
77# ###############################################################################
88
9- VERSION=" 2.2.11 "
9+ VERSION=" 2.3.0 "
1010
1111# ###############################################################################
1212# Common
@@ -45,17 +45,11 @@ get_platform()
4545 arm* )
4646 echo " arm"
4747 ;;
48- i[3-6]86|x86)
49- echo " x86"
50- ;;
5148 x86_64|amd64)
5249 echo " x86_64"
5350 ;;
54- mips64* )
55- echo " mips_64"
56- ;;
57- mips* )
58- echo " mips"
51+ i[3-6]86|x86)
52+ echo " x86"
5953 ;;
6054 * )
6155 echo " unknown"
@@ -71,9 +65,10 @@ get_qemu()
7165 local guest_platform=$( get_platform " ${arch} " )
7266 if [ " ${host_platform} " != " ${guest_platform} " ]; then
7367 case " ${guest_platform} " in
74- arm* ) qemu=" qemu-arm-static" ;;
75- x86* ) qemu=" qemu-i386-static" ;;
76- mips* ) qemu=" qemu-mipsel-static" ;;
68+ arm) qemu=" qemu-arm-static" ;;
69+ arm_64) qemu=" qemu-aarch64-static" ;;
70+ x86) qemu=" qemu-i386-static" ;;
71+ x86_64) qemu=" qemu-x86_64-static" ;;
7772 * ) qemu=" " ;;
7873 esac
7974 fi
You can’t perform that action at this time.
0 commit comments