-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add 2023.2 and 2024.1 #6
Open
moritz-meier
wants to merge
9
commits into
DLR-FT:main
Choose a base branch
from
moritz-meier:2024.1
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
a11e43e
add missing libyaml for dtc
moritz-meier 5c5a0a7
add xilinx unified 2023.2
moritz-meier f5035c4
add xilinx unified 2024.1
moritz-meier 7481d78
fix: make 2024.1 the default
moritz-meier 4d90d74
fix: changed formatting to nixfmt-rfc-style
moritz-meier 09fadc6
fix: add missing xlsclients
moritz-meier 71d4e91
feat: add optional param for install config
moritz-meier ab7ecfc
feat: add install config for 2024.1
moritz-meier f51f2d4
fix: install config
moritz-meier File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#### Vitis Unified Software Platform Install Configuration #### | ||
Edition=Vitis Unified Software Platform | ||
|
||
Product=Vitis | ||
|
||
# Path where AMD FPGAs & Adaptive SoCs software will be installed. | ||
Destination=/tools/Xilinx | ||
|
||
# Choose the Products/Devices the you would like to install. | ||
Modules=Virtex UltraScale+ 58G:0,Install Devices for Kria SOMs and Starter Kits:1,Vitis IP Cache (Enable faster on-boarding for new users):0,Versal AI Edge Series ES1:0,Zynq-7000:1,Versal Prime Series ES1:0,Kintex UltraScale+:0,Artix UltraScale+:0,Spartan-7:0,Install devices for Alveo and edge acceleration platforms:0,Engineering Sample Devices for Custom Platforms:0,Vitis Networking P4:0,Artix-7:0,Zynq UltraScale+ MPSoC:1,Versal HBM Series ES1:0,DocNav:0,Versal HBM Series:0,Virtex UltraScale+ HBM:0,Kintex-7:0,Virtex UltraScale+:0,Versal AI Core Series:0,Versal AI Edge Series:0,Kintex UltraScale:0,Versal Premium Series:0,Virtex UltraScale:0,Versal Premium Series ES1:0,Zynq UltraScale+ RFSoC:0,Power Design Manager (PDM):0,Versal AI Core Series ES1:0,Versal Prime Series:0,Virtex-7:0,Virtex UltraScale+ HBM 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= | ||
|
||
## 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,26 +3,79 @@ final: prev: { | |
|
||
genXilinxFhs = final.callPackage ./pkgs/xilinx-fhs.nix { }; | ||
|
||
# Set default version here | ||
|
||
xilinx-unified-unwrapped = final.xilinx-unified-2023-1-unwrapped; | ||
xilinx-unified-unwrapped = final.xilinx-unified-2024-1-unwrapped; | ||
xilinx-unified = final.callPackage ./pkgs/wrap-xilinx.nix { | ||
inputDerivation = final.xilinx-unified-unwrapped; | ||
}; | ||
|
||
xilinx-unified-2023-1-unwrapped = final.callPackage ./pkgs/xilinx-unified.nix { }; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. lets define all versions here and do not rely on some defaults in the xilinx-unified derivation. So we dont have to change/add future versions in multiple files. |
||
xilinx-unified-2023-1 = final.callPackage ./pkgs/wrap-xilinx.nix { inputDerivation = final.xilinx-unified-2023-1-unwrapped; }; | ||
|
||
xilinx-vivado-2019-2-unwrapped = (final.callPackage ./pkgs/xilinx-unified.nix { | ||
agreements = [ "XilinxEULA" "3rdPartyEULA" "WebTalkTerms" ]; | ||
}).overrideAttrs (old: rec { | ||
pname = "xilinx-vivado"; | ||
version = "2019.2_1106_2127"; | ||
src = final.requireFile { | ||
name = "Xilinx_Vivado_${version}.tar.gz"; | ||
url = "https://www.xilinx.com/"; | ||
hash = "sha256-sGeBz7KUW6lI8Eo1nobWZmxkK+d2VidnxZ91FcqaDpY="; | ||
}; | ||
}); | ||
# Add future version here | ||
|
||
xilinx-unified-2024-1-unwrapped = | ||
(final.callPackage ./pkgs/xilinx-unified.nix { | ||
install_config = ./install-configs/xlnx-unified-2024-1.txt; | ||
}).overrideAttrs | ||
(old: rec { | ||
pname = "xilinx-unified"; | ||
version = "2024.1_0522_2023"; | ||
src = final.requireFile { | ||
name = "FPGAs_AdaptiveSoCs_Unified_${version}.tar.gz"; | ||
url = "https://www.xilinx.com/"; | ||
hash = "sha256-AH7MJNhTMnaCCENluF26orxVCiZU/RF9bNbaHAnH8QM="; | ||
}; | ||
}); | ||
xilinx-unified-2024-1 = final.callPackage ./pkgs/wrap-xilinx.nix { | ||
inputDerivation = final.xilinx-unified-2024-1-unwrapped; | ||
}; | ||
|
||
xilinx-unified-2023-2-unwrapped = | ||
(final.callPackage ./pkgs/xilinx-unified.nix { }).overrideAttrs | ||
(old: rec { | ||
pname = "xilinx-unified"; | ||
version = "2023.2_1013_2256"; | ||
src = final.requireFile { | ||
name = "FPGAs_AdaptiveSoCs_Unified_${version}.tar.gz"; | ||
url = "https://www.xilinx.com/"; | ||
hash = "sha256-SCRztYAKux101RudvueXp19EPUBfxGqQMfMMIBa2r6o="; | ||
}; | ||
}); | ||
xilinx-unified-2023-2 = final.callPackage ./pkgs/wrap-xilinx.nix { | ||
inputDerivation = final.xilinx-unified-2023-2-unwrapped; | ||
}; | ||
|
||
xilinx-unified-2023-1-unwrapped = | ||
(final.callPackage ./pkgs/xilinx-unified.nix { }).overrideAttrs | ||
(old: rec { | ||
pname = "xilinx-unified"; | ||
version = "2023.1_0507_1903"; | ||
src = final.requireFile { | ||
name = "Xilinx_Unified_${version}.tar.gz"; | ||
url = "https://www.xilinx.com/"; | ||
hash = "sha256-Kq7GwlDvdTP+X3+u1bjQUkcy7+7FNFnbOiIJXF87nDk="; | ||
}; | ||
}); | ||
xilinx-unified-2023-1 = final.callPackage ./pkgs/wrap-xilinx.nix { | ||
inputDerivation = final.xilinx-unified-2023-1-unwrapped; | ||
}; | ||
|
||
xilinx-vivado-2019-2-unwrapped = | ||
(final.callPackage ./pkgs/xilinx-unified.nix { | ||
agreements = [ | ||
"XilinxEULA" | ||
"3rdPartyEULA" | ||
"WebTalkTerms" | ||
]; | ||
}).overrideAttrs | ||
(old: rec { | ||
pname = "xilinx-vivado"; | ||
version = "2019.2_1106_2127"; | ||
src = final.requireFile { | ||
name = "Xilinx_Vivado_${version}.tar.gz"; | ||
url = "https://www.xilinx.com/"; | ||
hash = "sha256-sGeBz7KUW6lI8Eo1nobWZmxkK+d2VidnxZ91FcqaDpY="; | ||
}; | ||
}); | ||
xilinx-vivado-2019-2 = final.callPackage ./pkgs/wrap-xilinx.nix { | ||
inputDerivation = final.xilinx-vivado-2019-2-unwrapped; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lets not assign an unspecific version to a specific one.