blob: b80c4014249a8bcf7e210bef6a2826e255d0b17d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
pkgver=$1
cat <<EOF
POST INSTALL INFO
1. If you selected Vitis, then installation of Versal Qemu emulator may have
failed. To reinstall run the following script:
⚠️ The installer uses sudo.
/opt/Xilinx/$pkgver/Vitis/data/emulation/qemu/comp/qemu_scripts/qemu/x86_64-qemu-xilinx-nativesdk-standalone -d /opt/Xilinx/Vitis/$pkgver/data/emulation/qemu/comp/qemu -y
EOF
cat <<"EOF"
2. The install path changed in 2025.1 from `/opt/Xilinx/{Vitis,Vivado}/VERSION` to `/opt/Xilinx/VERSION/{Vitis,Vivado}`. Change your shortcuts if needed.
EOF
}
|