-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·35 lines (26 loc) · 833 Bytes
/
setup.sh
File metadata and controls
executable file
·35 lines (26 loc) · 833 Bytes
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
#!/bin/sh
echo
echo "--------------------------------------------------------------------------------"
echo "TISDK setup script"
echo
echo "This script will set up your development host for dvsdk development."
echo "Parts of this script require administrator priviliges (sudo access)."
echo "--------------------------------------------------------------------------------"
cwd=`dirname $0`
. $cwd/bin/common.sh
$cwd/bin/setup-host-check.sh
check_status
$cwd/bin/setup-package-install.sh
check_status
$cwd/bin/setup-targetfs-nfs.sh
check_status
$cwd/bin/setup-tftp.sh
check_status
$cwd/bin/setup-minicom.sh
check_status
$cwd/bin/setup-uboot-env.sh
check_status
echo
echo "TISDK setup completed!"
echo "Please continue reading the Software Developer's Guide for more information on"
echo "how to develop software on the EVM"