15 lines
527 B
Bash
15 lines
527 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [ -d MDUV380_firmware/application/source/linkerdata ]; then
|
|
if [ -e MDUV380_firmware/tools/codec_cleaner.Linux -a -x MDUV380_firmware/tools/codec_cleaner.Linux ]; then
|
|
cd MDUV380_firmware/application/source/linkerdata && ../../../tools/codec_cleaner.Linux -C
|
|
else
|
|
echo "Error: The required tools are not installed in MDUV380_firmware/tools, the process cannot be completed."
|
|
exit 1
|
|
fi
|
|
else
|
|
echo "Error: Your source tree is incomplete, please fix this."
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|