blob: ff9263f5b86182101c076377f593a3a6a97b44f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
echo "Before using read the license placed here:"
echo "/usr/share/licenses/amdapp-sdk/APPSDK-EULA-linux.txt"
echo ""
echo " Libs are here: /opt/AMDAPP/SDK/lib/"
echo " ICD is here: /etc/OpenCL/vendors/amd.icd"
echo ""
}
post_upgrade() {
echo "Running ldconfig... "
ldconfig || return 1
echo "OK"
}
|