2023-09-29 03:08:33 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-10-10 17:53:09 +00:00
|
|
|
cat $HOME/.media/ascii_art.txt
|
|
|
|
|
|
|
|
if [[ ! -z "${PDK_TECH}" ]]; then
|
|
|
|
if [[ ! -z "${PDK_VERSION}" ]]; then
|
|
|
|
volare_set_latest
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "
|
2023-09-29 03:08:33 +00:00
|
|
|
There is not an active PDK, Use:
|
|
|
|
volare_set_latest <pdk_variant>
|
|
|
|
to automatically download and configure the latest version of a PDK.
|
2023-10-10 17:53:09 +00:00
|
|
|
You can also manually configure a PDK using volare and setting the PDK_TECH environment variable
|
|
|
|
"
|
|
|
|
fi
|