質問編集履歴
2
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -104,6 +104,10 @@
|
|
104
104
|
|
105
105
|
fi
|
106
106
|
|
107
|
+
|
108
|
+
|
109
|
+
LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/opt/xilinx/xrt/lib:/home/hagis/Vivado/Vitis/2019.2/bin:/home/hagis/Vivado/Vitis/2019.2/lib/lnx64.o:/home/hagis/Vivado/Vitis/2019.2/runtime/bin"
|
110
|
+
|
107
111
|
```
|
108
112
|
|
109
113
|
|
@@ -350,4 +354,14 @@
|
|
350
354
|
|
351
355
|
fi
|
352
356
|
|
357
|
+
|
358
|
+
|
359
|
+
source /home/hagis/Vivado/Vivado/2019.2/settings64.sh
|
360
|
+
|
361
|
+
source /home/hagis/Vivado/Vitis/2019.2/settings64.sh
|
362
|
+
|
363
|
+
source /opt/xilinx/xrt/setup.sh
|
364
|
+
|
365
|
+
source /opt/petalinux/settings.sh
|
366
|
+
|
353
|
-
```
|
367
|
+
```
|
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -44,6 +44,74 @@
|
|
44
44
|
|
45
45
|
|
46
46
|
|
47
|
+
|
48
|
+
|
49
|
+
**~/.profileの内容**
|
50
|
+
|
51
|
+
```sh
|
52
|
+
|
53
|
+
# ~/.profile: executed by the command interpreter for login shells.
|
54
|
+
|
55
|
+
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
|
56
|
+
|
57
|
+
# exists.
|
58
|
+
|
59
|
+
# see /usr/share/doc/bash/examples/startup-files for examples.
|
60
|
+
|
61
|
+
# the files are located in the bash-doc package.
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
# the default umask is set in /etc/profile; for setting the umask
|
66
|
+
|
67
|
+
# for ssh logins, install and configure the libpam-umask package.
|
68
|
+
|
69
|
+
#umask 022
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
# if running bash
|
74
|
+
|
75
|
+
if [ -n "$BASH_VERSION" ]; then
|
76
|
+
|
77
|
+
# include .bashrc if it exists
|
78
|
+
|
79
|
+
if [ -f "$HOME/.bashrc" ]; then
|
80
|
+
|
81
|
+
. "$HOME/.bashrc"
|
82
|
+
|
83
|
+
fi
|
84
|
+
|
85
|
+
fi
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
# set PATH so it includes user's private bin if it exists
|
90
|
+
|
91
|
+
if [ -d "$HOME/bin" ] ; then
|
92
|
+
|
93
|
+
PATH="$HOME/bin:$PATH"
|
94
|
+
|
95
|
+
fi
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
# set PATH so it includes user's private bin if it exists
|
100
|
+
|
101
|
+
if [ -d "$HOME/.local/bin" ] ; then
|
102
|
+
|
103
|
+
PATH="$HOME/.local/bin:$PATH"
|
104
|
+
|
105
|
+
fi
|
106
|
+
|
107
|
+
```
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
|
114
|
+
|
47
115
|
**~/.bashrcの内容**
|
48
116
|
|
49
117
|
```sh
|