forked from intel/robot_devkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrdk.sh
executable file
·139 lines (126 loc) · 3.85 KB
/
rdk.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#!/bin/bash
################################################################################
#
# Copyright (c) 2017 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
################################################################################
CURR_DIR="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"
set -e
. "$CURR_DIR"/scripts/common.sh
. "$CURR_DIR"/scripts/product.sh
. "$CURR_DIR"/scripts/install_deps.sh
. "$CURR_DIR"/scripts/sync_src.sh
. "$CURR_DIR"/scripts/build.sh
. "$CURR_DIR"/scripts/clean.sh
. "$CURR_DIR"/scripts/install.sh
. "$CURR_DIR"/scripts/release.sh
. "$CURR_DIR"/scripts/deploy.sh
. "$CURR_DIR"/scripts/version.sh
#######################################
# Print usages
#######################################
print_usage()
{
echo -e "\n${FG_RED}Usage${FG_NONE}:
${FG_BOLD}./rdk.sh${FG_NONE} [config|sync-src|build|clean|install|uninstall|deploy|usage|version] [OPTION]"
echo -e "\n${FG_RED}Options${FG_NONE}:
${FG_BLUE}config [--default |--silent package.cfg]${FG_NONE}: select a product for build
${FG_BLUE}install-deps ${FG_NONE}: Install all package dependences
${FG_BLUE}sync-src [--force]${FG_NONE}: sync source code for selected packages, clean code before sync with --force
${FG_BLUE}build [--args ARGS]${FG_NONE}: build ros2 packages
${FG_BLUE}clean ${FG_NONE}: remove build|install folders.
${FG_BLUE}install${FG_NONE}: install generated ros2 to /opt/robot_devkit folder.
${FG_BLUE}uninstall${FG_NONE}: delete rdk_ws folder and uninstall generated ros2 from /opt/robot_devkit folder.
${FG_BLUE}release${FG_NONE}: create a binariy tarball package for target device deployment.
${FG_BLUE}deploy [-u <user> -h <ip> -f <file> -p <proxy>]${FG_NONE}: deploy generated ros2 to remote target platform.
${FG_BLUE}usage${FG_NONE}: print this menu
${FG_BLUE}version${FG_NONE}: display current commit and date
"
}
#######################################
# Check system version
#######################################
check_system_version()
{
local system_ver
if [[ -f /etc/lsb-release ]]; then
system_ver=$( < /etc/lsb-release grep -i "DISTRIB_RELEASE" | cut -d "=" -f2)
if [[ $system_ver != "18.04" ]] ;then
error "Sorry, robot_devkit currently supports olny ubuntu 18.04"
exit 1
fi
else
error "Sorry, robot_devkit currently supports olny ubuntu 18.04"
exit 1
fi
}
#######################################
# Main entry for this script
#######################################
main()
{
# check system version
check_system_version
local cmd=$1
if [ -z "$cmd" ]; then
print_usage
exit 0
fi
shift
if [[ "${cmd}" = "install" ]] || [[ "${cmd}" = "uninstall" ]] || [[ "${cmd}" = "version" ]] && [[ "$*" ]]; then
echo -e "\n${FG_RED}./rdk.sh: error${FG_NONE}:${FG_BLUE} '$cmd' unrecognized arguments${FG_NONE}:${FG_RED} '$*'${FG_NONE}"
print_usage
exit 1
fi
case $cmd in
config)
config_package_dialog "$@"
;;
install-deps)
install_deps "$@"
;;
sync-src)
sync_src "$@"
;;
build)
build "$@"
;;
clean)
clean "$@"
;;
install)
install_rdk
;;
uninstall)
uninstall_rdk
;;
release)
release_rdk
;;
deploy)
deploy_rdk "$@"
;;
usage)
print_usage
;;
version)
rdk_version
;;
*)
print_usage
;;
esac
}
main "$@"