#### Vivado HL System Edition Install Configuration #### Edition=Vivado HL System Edition
Product=Vivado
# Path where Xilinx software will be installed. Destination=/opt/Xilinx
# Choose the Products/Devices the you would like to install. Modules=Zynq UltraScale+ MPSoC:0,Versal AI Core Series ES1:0,Versal Prime Series:0,DocNav:1,System Generator:0,Virtex UltraScale+ HBM:0,Virtex UltraScale+ 58G:0,Virtex UltraScale+ 58G ES:0,Kintex-7:0,Virtex UltraScale+:0,Zynq-7000:1,Versal AI Core Series:0,Kintex UltraScale+:0,Model Composer and System Generator:0,Spartan-7:0,Kintex UltraScale:0,Virtex UltraScale:0,Engineering Sample Devices:0,Zynq UltraScale+ RFSoC:0,Virtex-7:0,Versal Prime Series ES1:0,Artix-7:0,Virtex UltraScale+ HBM ES:0,Zynq UltraScale+ RFSoC ES:0
# Choose the post install scripts you'd like to run as part of the finalization step. Please note that some of these scripts may require user interaction during runtime. InstallOptions=Acquire or Manage a License Key:0,Enable WebTalk for Vivado to send usage statistics to Xilinx (Always enabled for WebPACK license):1
## Shortcuts and File associations ## # Choose whether Start menu/Application menu shortcuts will be created or not. CreateProgramGroupShortcuts=1
# Choose the name of the Start menu/Application menu shortcut. This setting will be ignored if you choose NOT to create shortcuts. ProgramGroupFolder=Xilinx Design Tools
# Choose whether shortcuts will be created for All users or just the Current user. Shortcuts can be created for all users only if you run the installer as administrator. CreateShortcutsForAllUsers=0
# Choose whether shortcuts will be created on the desktop or not. CreateDesktopShortcuts=1
# Choose whether file associations will be created or not. CreateFileAssociation=1
# Choose whether disk usage will be optimized (reduced) after installation EnableDiskUsageOptimization=1
UART_GROUP_ID=${UART_GROUP_ID:-20} if ! grep -q "x:${UART_GROUP_ID}:" /etc/group; then groupadd -g "$UART_GROUP_ID" uart fi UART_GROUP=$(grep -Po "^\\w+(?=:x:${UART_GROUP_ID}:)" /etc/group)
if [[ -n "$USER_ID" ]]; then useradd -s /bin/bash -u "$USER_ID" -o -d "$PWD" user usermod -aG sudo user usermod -aG "$UART_GROUP" user chown user $(tty) exec /usr/local/bin/gosu user "$@" else exec "$@" fi