Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
胡斌
/
srs
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
winlin
2014-04-28 18:52:18 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
fe80a4a7d236e984c91dce0ed19b6b3f20a5c4e3
fe80a4a7
1 parent
cdcbca64
remove package script for pi and arm, use param instead
隐藏空白字符变更
内嵌
并排对比
正在显示
2 个修改的文件
包含
0 行增加
和
28 行删除
trunk/scripts/package-arm.sh
trunk/scripts/package-raspberrypi.sh
trunk/scripts/package-arm.sh
已删除
100755 → 0
查看文件 @
cdcbca6
#!/bin/bash
echo
"在Ubuntu12下面交叉编译arm用的脚本"
echo
"argv[0]=
$0
"
if
[[
! -f
$0
]]
;
then
echo
"directly execute the scripts on shell."
;
work_dir
=
`
pwd
`
else
echo
"execute scripts in file:
$0
"
;
work_dir
=
`
dirname
$0
`
;
work_dir
=
`
(
cd
${
work_dir
}
&&
pwd
)
`
fi
bash
${
work_dir
}
/package.sh --arm
trunk/scripts/package-raspberrypi.sh
已删除
100755 → 0
查看文件 @
cdcbca6
#!/bin/bash
echo
"在RaspberryPi下直接打包,不编译直接打包(编译慢,手工编译)"
echo
"argv[0]=
$0
"
if
[[
! -f
$0
]]
;
then
echo
"directly execute the scripts on shell."
;
work_dir
=
`
pwd
`
else
echo
"execute scripts in file:
$0
"
;
work_dir
=
`
dirname
$0
`
;
work_dir
=
`
(
cd
${
work_dir
}
&&
pwd
)
`
fi
bash
${
work_dir
}
/package.sh --no-build
请
注册
或
登录
后发表评论