20 lines
961 B
Bash
20 lines
961 B
Bash
#!/bin/bash
|
|
cat << EOF
|
|
__ __
|
|
__ /\ \__ /\ \
|
|
___ ____/\_\ ___ ____\ \ ,_\ __ ___\ \ \/'\ ____
|
|
/ __`\ /',__\/\ \ /'___\ /',__\\ \ \/ /'__`\ /'___\ \ , < /',__\
|
|
/\ \L\ \/\__, `\ \ \/\ \__/ /\__, `\\ \ \_/\ \L\.\_/\ \__/\ \ \\`\ /\__, `\
|
|
\ \____/\/\____/\ \_\ \____\ \/\____/ \ \__\ \__/.\_\ \____\\ \_\ \_\/\____/
|
|
\/___/ \/___/ \/_/\/____/ \/___/ \/__/\/__/\/_/\/____/ \/_/\/_/\/___/
|
|
|
|
EOF
|
|
|
|
if [[ -z "${PDK} "]]
|
|
cat << EOF
|
|
There is not an active PDK, Use:
|
|
volare_set_latest <pdk_variant>
|
|
to automatically download and configure the latest version of a PDK.
|
|
You can also manually configure a PDK using volare and setting the PDK environment variable
|
|
EOF
|
|
fi |