-
Notifications
You must be signed in to change notification settings - Fork 482
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'Xilinx:master' into client_port_trace_missing
- Loading branch information
Showing
119 changed files
with
28,252 additions
and
2,055 deletions.
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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# When updating Petalinux build please file a SH ticket to retain the build | ||
# https://jira.xilinx.com/secure/CreateIssue!default.jspa | ||
PETALINUX=/proj/petalinux/2025.1/petalinux-v2025.1_01061007/tool/petalinux-v2025.1-final | ||
PETALINUX=/proj/petalinux/2025.1/petalinux-v2025.1_01271330/tool/petalinux-v2025.1-final |
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,44 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# Copyright (C) 2025 Advanced Micro Devices, Inc. All rights reserved. | ||
cmake_minimum_required(VERSION 3.20) | ||
|
||
set(CPACK_PACKAGE_VENDOR "Advanced Micro Devices, Inc.") | ||
set(CPACK_PACKAGE_CONTACT "[email protected]") | ||
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "XDNA RunTime stack for use with AMD FPGA and NPU platforms") | ||
|
||
set(CPACK_PACKAGE_NAME "XRT SDK") | ||
set(CPACK_PACKAGE_VERSION_RELEASE "${XRT_VERSION_RELEASE}") | ||
set(CPACK_PACKAGE_VERSION "${XRT_VERSION_MAJOR}.${XRT_VERSION_MINOR}.${XRT_VERSION_PATCH}") | ||
set(CPACK_PACKAGE_VERSION_MAJOR "${XRT_VERSION_MAJOR}") | ||
set(CPACK_PACKAGE_VERSION_MINOR "${XRT_VERSION_MINOR}") | ||
set(CPACK_PACKAGE_VERSION_PATCH "${XRT_VERSION_PATCH}") | ||
set(CPACK_REL_VER "windows") | ||
set(CPACK_ARCH "x86_64") | ||
|
||
set(CPACK_ARCHIVE_COMPONENT_INSTALL 1) | ||
set(CPACK_PACKAGE_FILE_NAME "xrtsdk-${CPACK_PACKAGE_VERSION}-${CPACK_REL_VER}-${CPACK_ARCH}") | ||
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/../LICENSE") | ||
set(CPACK_PACKAGE_INSTALL_DIRECTORY "XRT") | ||
set(CPACK_NSIS_PACKAGE_NAME "XRT SDK ${CPACK_PACKAGE_VERSION}") | ||
set(CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL ON) | ||
set(CPACK_NSIS_MENU_LINKS "") | ||
|
||
# Initialize CPACK_COMPONENTS_ALL variable to just the SDK | ||
# component, which is base-dev | ||
set(CPACK_COMPONENTS_ALL "base_dev") | ||
set(CPACK_ARCHIVE_FILE_NAME ${CPACK_PACKAGE_FILE_NAME}) | ||
|
||
message("-- ${CMAKE_BUILD_TYPE} ${PACKAGE_KIND} package") | ||
|
||
include(CPack) | ||
|
||
cpack_add_component(base_dev | ||
DISPLAY_NAME "XRT SDK" | ||
DESCRIPTION "XRT software development kit with header files and link libraries for application development." | ||
GROUP Development | ||
) | ||
|
||
cpack_add_component_group(Development | ||
EXPANDED | ||
DESCRIPTION "XRT Software Development Kits" | ||
) |
Oops, something went wrong.