1 Star 2 Fork 2

open-loongarch/buildroot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
buildenv.sh 625 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
#set -ex
conf=""
PS3="Please enter your choice:"
function get_conf()
{
plat=loongson${1}
options=(`cd configs && ls ${plat}*`)
select opt in "${options[@]}"
do
conf=$opt
# echo $opt
break
done
echo
echo "Your select is :$conf"
echo
}
function get_all_conf()
{
get_conf 2k1000la
get_conf 2k500
get_conf 2k300
get_conf 2p500
}
function usage()
{
echo "./buildenv.sh <2k300/2k500/2k1000la/2p500/all>"
}
function main()
{
if [ $# -eq 1 ] ;then
param=${1}
if [ $param = "all" ]; then
get_conf
else
plat=${1}_
get_conf $plat
fi
make $conf
else
usage
fi
}
main $@
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/open-loongarch/buildroot.git
git@gitee.com:open-loongarch/buildroot.git
open-loongarch
buildroot
buildroot
master

搜索帮助