zoukankan      html  css  js  c++  java
  • MocorDroid编译工程快速建立编译环境

    function sprdLunch()
    {
        declare -a arrProj
        arrProj=`find out/target/product -name previous_build_config.mk`

        if [ ${#arrProj[@]} -eq 1 ]; then
            preCfg=`cat ${arrProj[0]}`
            temp1=${preCfg##* } # get full config
            lunName=${temp1%-*} # get lunch name

            echo -n "lunch pre-config: $lunName? [ yes | no] "
            read aNum
            if [ $aNum=y -o $aNum=yes -o x$aNum = x ];then
                lunch $lunName
            else
                lunch
            fi  
        fi  

        unset arrProj
        unset preCfg
        unset temp1
        unset lunName
    }

  • 相关阅读:
    压测mysql连接数
    OpenStack SR-IOV
    Scheduler 租户虚机到不同host
    Neutron 集成 DPDK
    Centos 7 密码重置
    win10优化
    Aria
    tomcat lb cluster
    Tomcat.md
    varnish.md
  • 原文地址:https://www.cnblogs.com/caidi/p/4522527.html
Copyright © 2011-2022 走看看