代码拉取完成,页面将自动刷新
同步操作将从 吉客固件(dugiware)/dugitools 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/bin/bash
set -e
function sdone(){ (echo -e "\033[32;01m$*\033[0m";) }
function serro(){ (echo -e "\033[31;01m$*\033[0m";) }
function swarn(){ (echo -e "\033[33;01m$*\033[0m";) }
do_install()
{
swarn "Install $1 [START]"
sudo apt-get install -y --allow-unauthenticated $1 #> /dev/null 2>&1
if [ $? -eq 0 ]; then
sdone "Install $1 [OK]"
else
serro "Install $1 [ERROR]"
exit 1
fi
}
fo_install()
{
swarn "Install $1 [START]"
sudo apt-get install -y $1 --force-yes > /dev/null 2>&1
if [ $? -eq 0 ]; then
sdone "Install $1 [OK]"
else
serro "Install $1 [ERROR]"
exit 1
fi
}
swarn "Instal tools [START]"
#网络工具
do_install net-tools
#构建工具MAKE
do_install make
#构建工具CMAK
do_install cmake
#构建工具AUTOMAKE
do_install automake
do_install autoconf
#安装代码索引工具
do_install cscope
#安装代码标签工具
#do_install ctags
#以下内容和开发有关
do_install build-essential
#do_install zlib1g
do_install zlib1g-dev
do_install openssl
do_install libssl-dev
do_install libstdc++6
do_install lib32stdc++6
do_install ncurses-dev
do_install libncurses5
do_install libncurses5-dev
#do_install lib32ncurses5
do_install lib32ncurses5-dev
do_install flex
do_install gawk
do_install gettext
do_install texinfo
#do_install python-dev
do_install mtd-utils
do_install binutils
do_install u-boot-tools
do_install patch
do_install zip
do_install unzip
do_install bzip2
do_install libz-dev
do_install lib32z1
do_install lib32z1-dev
do_install bison
do_install gperf
do_install lzop
do_install xz-utils
do_install diffstat
do_install chrpath
do_install cpio
do_install openssh-server
do_install subversion
do_install libelf-dev
#实施git代码管理需要以下工具
do_install git
do_install git-core
do_install udhcpc
#运行QTCreator需要以下工具
do_install libgl1-mesa-dev
do_install libglu1-mesa-dev
#do_install asciidoc
#do_install python3-pip
do_install libgmp3-dev
do_install libmpc-dev
do_install xsltproc
#for android
do_install gnupg
do_install curl
do_install gcc-multilib
do_install g++-multilib
do_install libc6-dev-i386
do_install x11proto-core-dev
do_install libx11-dev
do_install lib32z-dev
do_install ccache
do_install libxml2-utils
sdone "Instal tools [FINISH]"
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。