aboutsummaryrefslogtreecommitdiff
path: root/recipes-demo/de10-nano-fftsw-apps/files/setup_target_fft_env.sh
blob: 9533a1af572449ccd6430cb9f78c754dcb23f9bd (plain)
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#!/bin/sh

cd $(dirname ${0})

echo "Executing from directory '$(pwd)'."

[ -d '/sys/class/misc/fft' ] || {
	echo "Attempting to install 'fft_driver'..."
	modprobe fft_driver > /dev/null 2>&1 || {
		echo ""
		echo "ERROR: while attempting 'modprobe fft_driver'"
		echo "Exiting script due to error..."
		echo ""
		exit 1
	}

	sleep 1

	[ -d "/sys/class/misc/fft" ] || {
		echo ""
		echo "ERROR: fft_driver presence is not detected after modprobe..."
		echo "Exiting script due to error..."
		echo ""
		exit 1
	}
}

echo "FFT driver appears to be installed."

[ -d '/mnt' ] || {
	echo "Attempting to create directory '/mnt'..."
	mkdir /mnt > /dev/null 2>&1 || {
		echo ""
		echo "ERROR: while attempting 'mkdir /mnt'"
		echo "Exiting script due to error..."
		echo ""
		exit 1
	}
}

echo "Directory '/mnt' exists."

[ -d '/mnt/ram' ] || {
	echo "Attempting to create directory '/mnt/ram'..."
	mkdir /mnt/ram > /dev/null 2>&1 || {
		echo ""
		echo "ERROR: while attempting 'mkdir /mnt/ram'"
		echo "Exiting script due to error..."
		echo ""
		exit 1
	}
}

echo "Directory '/mnt/ram' exists."

MNT_RAM_TYPE="$(stat -f -c '%T' /mnt/ram)"
[ ${MNT_RAM_TYPE} == "tmpfs" ] || {
	echo "Attempting to mount 'tmpfs' on '/mnt/ram'..."
	mount -t tmpfs -o size=100m tmpfs /mnt/ram > /dev/null 2>&1 || {
		echo ""
		echo "ERROR: while attempting 'mount -t tmpfs -o size=1m tmpfs /mnt/ram'"
		echo "Exiting script due to error..."
		echo ""
		exit 1
	}

	MNT_RAM_TYPE="$(stat -f -c '%T' /mnt/ram)"
	[ ${MNT_RAM_TYPE} == "tmpfs" ] || {
		echo ""
		echo "ERROR: tmpfs file system not detected after mount at '/mnt/ram'"
		echo "Exiting script due to error..."
		echo ""
		exit 1
	}
}

echo "tmpfs appears to be mounted at '/mnt/ram'."

[ -d '/mnt/ram/fft' ] && {
	echo ""
	echo "ERROR: directory already exists '/mnt/ram/fft', please delete before proceeding."
	echo "You could use this 'rm -rf /mnt/ram/fft' to delete the directory."
	echo "Exiting script due to error..."
	echo ""
	exit 1
}

echo "Directory '/mnt/ram/fft' does not exist."

mkdir /mnt/ram/fft > /dev/null 2>&1 || {
	echo ""
	echo "ERROR: while attempting 'mkdir /mnt/ram/fft'"
	echo "Exiting script due to error..."
	echo ""
	exit 1
}

echo "Created directory '/mnt/ram/fft'."

[ -f './fft.tgz' ] || {
	echo ""
	echo "ERROR: unable to locate file '$(pwd)/fft.tgz'"
	echo "Exiting script due to error..."
	echo ""
	exit 1
}

echo "File './fft.tgz' exists."

cp './fft.tgz' /mnt/ram/fft > /dev/null 2>&1 || {
	echo ""
	echo "ERROR: while attempting 'cp './fft.tgz' /mnt/ram/fft'"
	echo "Exiting script due to error..."
	echo ""
	exit 1
}

echo "Copied './fft.tgz' to '/mnt/ram/fft'."

cd '/mnt/ram/fft' > /dev/null 2>&1 || {
	echo ""
	echo "ERROR: while attempting 'cd '/mnt/ram/fft''"
	echo "Exiting script due to error..."
	echo ""
	exit 1
}

echo "Changed into directory '/mnt/ram/fft'."

tar xf 'fft.tgz' > /dev/null 2>&1 || {
	echo ""
	echo "ERROR: while attempting 'tar xf 'fft.tgz''"
	echo "Exiting script due to error..."
	echo ""
	exit 1
}

echo "Extracted archive 'fft.tgz'."

echo "Attempting to execute './create_input_waveforms.sh'."

./create_input_waveforms.sh > /dev/null 2>&1 || {
	echo ""
	echo "ERROR: while attempting './create_input_waveforms.sh'"
	echo "Exiting script due to error..."
	echo ""
	exit 1
}

echo "Executed './create_input_waveforms.sh'."

echo "Attempting to execute './run_all.sh'."

./run_all.sh > /dev/null 2>&1 || {
	echo ""
	echo "ERROR: while attempting './run_all.sh'"
	echo "Exiting script due to error..."
	echo ""
	exit 1
}

echo "Executed './run_all.sh'."

echo "Target setup complete."

exit 0