#!/bin/bash # AQ # Build Android qemu # Statically connected binary program # Qemu Version: 2.10.0-rc2 # System: Debian stretch, System Architecture: armel # System: Ubuntu 16.10, System Architecture: x86_64 # Write Time: 20170707 # Modify Time 20170814 # AIXIAO.me #set -x path() { export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin } init() { initdate check_os helloworld check_root PWD=$(pwd) SRC=$PWD/AQ QEMU_PREFIX=/data/local/aixiao.qemu QEMU_VERSION="2.8.0" QEMU_VERSION="2.8.1.1" QEMU_VERSION="2.10.0-rc0" QEMU_VERSION="2.10.0-rc1" QEMU_VERSION="2.10.0-rc2" QEMU_VERSION="2.10.0-rc3" QEMU_VERSION="2.10.0-rc4" QEMU_VERSION=${qemu_version:-"$QEMU_VERSION"} check_qemu_version $QEMU_VERSION QEMU_TAR_SRC=${PWD}/AQ/qemu-${QEMU_VERSION}.tar.xz QEMU_BIN_TAR_CREATE_SRC="${SRC}/qemu-${QEMU_VERSION}_${arch}.tar.bz2" QEMU_TAR_SRC_USR=http://download.qemu-project.org/qemu-${QEMU_VERSION}.tar.xz QEMU_SRC_DIR=${PWD}/AQ/qemu-${QEMU_VERSION} QEMU_GIT_SRC_DIR=${PWD}/AQ/qemu QEMU_CONFIGURE_2_8_0=" ./configure --prefix=${QEMU_PREFIX} --target-list=arm-linux-user,arm-softmmu \ --static \ --enable-docs --enable-guest-agent \ --enable-gcrypt --enable-vnc --enable-vnc-jpeg --enable-vnc-png \ --enable-fdt --enable-bluez --enable-kvm \ --enable-colo --enable-linux-aio --enable-cap-ng --enable-attr --enable-vhost-net --enable-bzip2 \ --enable-coroutine-pool --enable-tpm --enable-libssh2 --enable-replication \ --disable-libiscsi --disable-libnfs --disable-libusb \ " QEMU_CONFIGURE_2_8_1_1=" ./configure --prefix=${QEMU_PREFIX} --target-list=arm-linux-user,arm-softmmu \ --static \ --enable-docs --enable-guest-agent \ --enable-gcrypt --enable-vnc --enable-vnc-jpeg --enable-vnc-png \ --enable-fdt --enable-bluez --enable-kvm \ --enable-colo --enable-linux-aio --enable-cap-ng --enable-attr --enable-vhost-net --enable-bzip2 \ --enable-coroutine-pool --enable-tpm --enable-libssh2 --enable-replication \ --disable-libiscsi --disable-libnfs --disable-libusb \ " QEMU_CONFIGURE_2_10_0_RC0=" ./configure --prefix=${QEMU_PREFIX} --target-list=arm-linux-user,arm-softmmu,i386-linux-user,i386-softmmu \ --static \ --enable-docs \ --enable-guest-agent \ --disable-sdl --disable-gtk --disable-vte --disable-curses --disable-cocoa \ --enable-gcrypt \ --enable-vnc --enable-vnc-jpeg --enable-vnc-png \ --disable-virtfs --enable-fdt --enable-bluez \ --enable-kvm --disable-hax \ --enable-linux-aio --enable-cap-ng --enable-attr --enable-vhost-net --enable-libiscsi --disable-libnfs --disable-smartcard --disable-libusb --enable-live-block-migration --disable-usb-redir \ --enable-bzip2 \ --enable-coroutine-pool --disable-glusterfs --enable-tpm --enable-libssh2 --enable-replication --enable-vhost-vsock --enable-xfsctl --enable-tools \ --enable-crypto-afalg \ " QEMU_CONFIGURE_2_10_0_RC2=" ./configure --prefix=${QEMU_PREFIX} --target-list=arm-linux-user,arm-softmmu,i386-linux-user,i386-softmmu \ --static \ --enable-system --enable-user --disable-bsd-user --enable-docs --enable-guest-agent --disable-guest-agent-msi --disable-pie --disable-modules --enable-debug-tcg --disable-debug-info --disable-sparse \ --disable-gnutls --disable-nettle --enable-gcrypt --disable-sdl --disable-gtk --disable-vte --disable-curses --enable-vnc --disable-vnc-sasl --enable-vnc-jpeg --enable-vnc-png --disable-cocoa \ --enable-virtfs --disable-xen --disable-xen-pci-passthrough --disable-brlapi --disable-curl --enable-fdt --enable-bluez --enable-kvm --disable-hax \ --disable-rdma --disable-netmap --enable-linux-aio --enable-cap-ng --enable-attr --enable-vhost-net --disable-spice --disable-rbd --enable-libiscsi --disable-libnfs --disable-smartcard \ --disable-libusb --enable-live-block-migration --disable-usb-redir --disable-lzo --disable-snappy \ --enable-bzip2 \ --disable-seccomp --enable-coroutine-pool --disable-glusterfs --enable-tpm --disable-libssh2 --disable-numa --disable-tcmalloc --disable-jemalloc --enable-replication --enable-vhost-vsock --disable-opengl \ --disable-virglrenderer --enable-xfsctl --enable-qom-cast-debug --enable-tools --disable-vxhs \ --enable-crypto-afalg --enable-vhost-user\ " QEMU_CONFIGURE_2_10_0_RC1=$QEMU_CONFIGURE_2_10_0_RC0 QEMU_CONFIGURE_2_10_0_RC2=$QEMU_CONFIGURE_2_10_0_RC2 QEMU_CONFIGURE_2_10_0_RC3=$QEMU_CONFIGURE_2_10_0_RC2 QEMU_CONFIGURE_2_10_0_RC4=$QEMU_CONFIGURE_2_10_0_RC2 QEMU_CONFIGURE_GIT=$QEMU_CONFIGURE_2_10_0_RC2 MAKE_J="$(grep -c ^processor /proc/cpuinfo | grep -E '^[1-9]+[0-9]*$' || echo 1)" ; test $MAKE_J != "1" && make_j=$((MAKE_J - 1)) || make_j=$MAKE_J MAKE_J="-j${make_j}" pkg_install $OS if test "$GIT_QEMU" = "0" ; then git_clone install qemu-git exit 1 fi src_download tar_extract install qemu } initdate() { init_date=`date +%s` } helloworld() { vvv=$(echo $OS_VER | cut -b1) test $OS = "ubuntu" && vvv=$(echo $OS_VER | awk -F '.' '{print$1}') cat <> /dev/null 2>&1 ; then OS=ubuntu OS_VER=$(cat /etc/issue | head -n1 | awk '{print$2}') echo -e SYSTEM: UBUNTU $(uname -m) ${OS_VER}\\nKERNEL: $(uname -sr) elif test -f /etc/debian_version ; then OS=debian OS_VER=$(cat /etc/debian_version) echo -e SYSTEM: DEBIAN $(uname -m) ${OS_VER}\\nKERNEL: $(uname -sr) elif test -f /etc/centos-release ; then OS=centos OS_VER=$(cat /etc/centos-release | grep -o -E '[0-9.]{3,}') 2>> /dev/null echo -e SYSTEM: CENTOS $(uname -m) ${OS_VER}\\nKERNEL: $(uname -sr) else echo The system does not support exit 1 fi case $OS in "debian") arch=`uname -m` test "$arch" = "i686" && arch=x86 test "$arch" = "i386" && arch=x86 test "$arch" = "i486" && arch=x86 test "$arch" = "i586" && arch=x86 test "$arch" = "x86_64" && arch=x64 test "$arch" = "armel7" && arch=arm case $vvv in "8") : ;; "9") case $arch in "arm") APT1="libbz2-dev" ;; "x86") APT1="libbz2-dev" ;; "x64") APT1="libbz2-dev" ;; esac ;; esac APT="$APT1" ;; "ubuntu") arch=`uname -m` test "$arch" = "i686" && arch=x86 test "$arch" = "i386" && arch=x86 test "$arch" = "i486" && arch=x86 test "$arch" = "i586" && arch=x86 test "$arch" = "x86_64" && arch=x64 test "$arch" = "armel7" && arch=arm case $vvv in "16") : ;; "17") : ;; esac APT="" ;; "*") echo -ne The system does not support\\n && exit 1 ;; esac } check_root() { if test $(id -u) != "0" || test $(id -g) != 0 ; then echo Root run $0 ? exit 1 fi } check_qemu_version() { case $1 in "2.8.0") : ;; "2.8.1.1") : ;; "2.10.0-rc0") : ;; "2.10.0-rc1") : ;; "2.10.0-rc2") : ;; "2.10.0-rc3") : ;; "2.10.0-rc4") : ;; *) echo -ne The QEMU $QEMU_VERSION version does not support configure\\n ; exit 1 ;; esac } bg_exec() { rm -f $BGEXEC_EXIT_STATUS_FILE $@ echo $? > $BGEXEC_EXIT_STATUS_FILE } bg_wait() { BGEXEC_EXIT_STATUS_FILE=/tmp/QEMU.status bg_exec $@ >> /dev/null 2>&1 & wait_pid $! ! test -f $BGEXEC_EXIT_STATUS_FILE && exit 2 } wait_pid() { while true ; do ps -p $1 >> /dev/null if test "$?" = "1" ; then break fi sleep 1 echo -ne . sleep 1 echo -ne . sleep 1 echo -ne . sleep 1 echo -ne . sleep 1 echo -ne \\b\\b\\b\\b\ \ \ \ \\b\\b\\b\\b sleep 1 done } pkg_install() { case $1 in debian) echo -n "Debian apt update " bg_wait apt-get update if test $(cat $BGEXEC_EXIT_STATUS_FILE) != "0" ; then echo -ne fail\\n else echo -ne done\\n fi echo -n "Debian apt install " DEBIAN_FRONTEND=noninteractive bg_wait apt-get -qqy --force-yes install build-essential git $APT if test $(cat $BGEXEC_EXIT_STATUS_FILE) != "0" ; then echo -ne fail\\n-----------------------------\\n exit 1 else echo -ne done\\n fi echo -n "Debian apt build-dep " DEBIAN_FRONTEND=noninteractive bg_wait apt-get -qqy --force-yes build-dep qemu-system $APT if test $(cat $BGEXEC_EXIT_STATUS_FILE) != "0" ; then echo -ne fail\\n-----------------------------\\n exit 1 fi echo -ne done\\n-----------------------------\\n ;; ubuntu) echo -n "Ubuntu apt update " bg_wait apt-get update if test $(cat $BGEXEC_EXIT_STATUS_FILE) != "0" ; then echo -ne fail\\n else echo -ne done\\n fi echo -n "Ubuntu apt install " DEBIAN_FRONTEND=noninteractive bg_wait apt-get -qqy --force-yes install build-essential git if test $(cat $BGEXEC_EXIT_STATUS_FILE) != "0" ; then echo -ne fail\\n-----------------------------\\n exit 1 else echo -ne done\\n fi echo -n "Ubuntu apt build-dep " DEBIAN_FRONTEND=noninteractive bg_wait apt-get -qqy --force-yes build-dep qemu-system if test $(cat $BGEXEC_EXIT_STATUS_FILE) != "0" ; then echo -ne fail\\n-----------------------------\\n exit 1 else echo -ne done\\n-----------------------------\\n fi ;; esac } src_download() { if ! test -f ${QEMU_TAR_SRC} ; then echo -n "Download QEMU ${QEMU_VERSION} " bg_wait wget -q -T 120 -O ${QEMU_TAR_SRC}_tmp ${QEMU_TAR_SRC_USR} if test $(cat $BGEXEC_EXIT_STATUS_FILE) != "0" || ! test -f ${QEMU_TAR_SRC}_tmp ; then echo -ne fail\\n test -f ${QEMU_TAR_SRC}_tmp && rm -f ${QEMU_TAR_SRC}_tmp && exit 2 else echo -ne done\\n mv ${QEMU_TAR_SRC}_tmp ${QEMU_TAR_SRC} fi fi } tar_extract() { if ! test -d $QEMU_SRC_DIR; then echo -n +Extract QEMU .... tar -axf $QEMU_TAR_SRC -C $SRC >> /dev/null 2>&1 if ! test -d $QEMU_SRC_DIR ; then echo -ne \\b\\b\\b\\bfail\\n exit 2 else echo -ne \\b\\b\\b\\bdone\\n fi fi } tar_create() { if test -d $QEMU_PREFIX ; then echo -n +Create QEMU $QEMU_BIN_TAR_CREATE_SRC .... tar -cjf $QEMU_BIN_TAR_CREATE_SRC $QEMU_PREFIX > /dev/null 2>&1 if ! test -f $QEMU_BIN_TAR_CREATE_SRC ; then echo -ne \\b\\b\\b\\bfail\\n exit 2 else echo -ne \\b\\b\\b\\bdone\\n fi fi } check_qemu_bin() { if test -d $QEMU_PREFIX ; then file $QEMU_PREFIX/bin/qemu-system-i386 | grep "statically linked" > /dev/null 2>&1 if test $(echo $?) = "0" ; then echo -ne statically linked binary program.\\n else echo -ne dynamically linked binary program.\\n fi fi } git_clone() { if ! test -d $QEMU_GIT_SRC_DIR ; then echo -n "GIT PULL QEMU " cd $SRC bg_wait git clone git://git.qemu-project.org/qemu.git if test $(cat $BGEXEC_EXIT_STATUS_FILE) != "0" || ! test -d $QEMU_GIT_SRC_DIR ; then echo -ne fail\\n exit 2 fi cd $QEMU_GIT_SRC_DIR bg_wait git submodule init if test $(cat $BGEXEC_EXIT_STATUS_FILE) != "0" ; then echo -ne fail\\n exit 2 fi bg_wait git submodule update --recursive if test $(cat $BGEXEC_EXIT_STATUS_FILE) != "0" || ! test -f $QEMU_GIT_SRC_DIR/configure ; then echo -ne fail\\n exit 2 else echo -ne done\\n-----------------------------\\n fi fi } c_configure() { local a="'" local b="\"" local c="\\" local l=$(grep -ne "static void version(void)" vl.c | cut -d : -f1) local l=$((l+2)) if test "$(grep "AIXIAO.ME" vl.c ; echo $?)" = "1" ; then eval "sed -i ${a}${l}i printf(${c}${b}AIXIAO.ME Compile Links, EMAIL 1605227279@QQ.COM${c}${c}n${c}${b});${a} vl.c" else exit 3 fi } configure() { case $1 in qemu) case $2 in "2.8.0") ${QEMU_CONFIGURE_2_8_0} ;; "2.8.1.1") ${QEMU_CONFIGURE_2_8_1_1} ;; "2.9.0") : ;; "2.10.0-rc0") ${QEMU_CONFIGURE_2_10_0_RC0} ;; "2.10.0-rc1") ${QEMU_CONFIGURE_2_10_0_RC1} ;; "2.10.0-rc2") ${QEMU_CONFIGURE_2_10_0_RC2} ;; "2.10.0-rc3") ${QEMU_CONFIGURE_2_10_0_RC3} ;; "2.10.0-rc4") ${QEMU_CONFIGURE_2_10_0_RC4} ;; esac ;; qemu-git) ${QEMU_CONFIGURE_GIT} ;; esac } install() { case $1 in qemu) cd $QEMU_SRC_DIR echo -n "Configure QEMU " bg_wait configure $1 $QEMU_VERSION if test $(cat $BGEXEC_EXIT_STATUS_FILE) = "0" && test -f $QEMU_SRC_DIR/Makefile ; then echo -ne done\\n else echo -ne fail\\n exit 3 fi c_configure >> /dev/null 2>&1 & echo -n Configure QEMU C File\ ;wait_pid $! if test "$(grep "AIXIAO.ME" vl.c ; echo $?)" = "1" ; then echo -ne fail\\n exit 3 else echo -ne done\\n fi make $MAKE_J >> /dev/null 2>&1 & echo -n Make QEMU\ ;wait_pid $! if test -x $QEMU_SRC_DIR/arm-softmmu/qemu-system-arm ; then echo -ne done\\n else echo -ne fail\\n exit 3 fi make install >> /dev/null 2>&1 & echo -n Make install QEMU\ ;wait_pid $! if test -x $QEMU_PREFIX/bin/qemu-system-arm ; then echo -ne done\\n else echo -ne fail\\n exit 3 fi ;; qemu-git) cd $QEMU_GIT_SRC_DIR echo -n "Configure QEMU " bg_wait configure $1 if test $(cat $BGEXEC_EXIT_STATUS_FILE) = "0" && test -f $QEMU_GIT_SRC_DIR/Makefile ; then echo -ne done\\n else echo -ne fail\\n exit 3 fi c_configure >> /dev/null 2>&1 & echo -n Configure QEMU C File\ ; wait_pid $! if test "$(grep "AIXIAO.ME" vl.c ; echo $?)" = "1" ; then echo -ne fail\\n exit 3 else echo -ne done\\n fi make $MAKE_J >> /dev/null 2>&1 & echo -n Make QEMU\ ;wait_pid $! if test -x $QEMU_GIT_SRC_DIR/arm-softmmu/qemu-system-arm ; then echo -ne done\\n else echo -ne fail\\n exit 3 fi make install >> /dev/null 2>&1 & echo -n Make install QEMU\ ;wait_pid $! if test -x $QEMU_PREFIX/bin/qemu-system-arm ; then echo -ne done\\n else echo -ne fail\\n exit 3 fi ;; esac echo -ne -----------------------------\\n tar_create check_qemu_bin echo -e -----------------------------\\nAll Installation Complete\\n-----------------------------\\nProcessed\ in\ $(awk "BEGIN{print `date +%s`-$init_date}")\ second\(s\) } init_exec() { case "$1" in "--help") cat <