-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #132 from slaclab/pre-release
v2.0.3 release candidate
- Loading branch information
Showing
6 changed files
with
118 additions
and
99 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
############################################################################## | ||
## This file is part of 'SLAC Firmware Standard Library'. | ||
## It is subject to the license terms in the LICENSE.txt file found in the | ||
## top-level directory of this distribution and at: | ||
## https://confluence.slac.stanford.edu/display/ppareg/LICENSE.html. | ||
## No part of 'SLAC Firmware Standard Library', including this file, | ||
## may be copied, modified, propagated, or distributed except according to | ||
## the terms contained in the LICENSE.txt file. | ||
############################################################################## | ||
|
||
## \file vivado_batch.tcl | ||
# \brief This script launches the Vivado project then runs User batch.tcl script | ||
# with all the ruckus procedures and environmental variables included | ||
|
||
# Get variables and Custom Procedures and common properties | ||
source -quiet $::env(RUCKUS_DIR)/vivado_env_var.tcl | ||
source -quiet $::env(RUCKUS_DIR)/vivado_proc.tcl | ||
source -quiet $::env(RUCKUS_DIR)/vivado_properties.tcl | ||
source -quiet $::env(RUCKUS_DIR)/vivado_messages.tcl | ||
set_property STEPS.WRITE_BITSTREAM.TCL.POST ${RUCKUS_DIR}/vivado_post_route_run.tcl [get_runs impl_1] | ||
|
||
# Run user's batch script | ||
SourceTclFile ${VIVADO_DIR}/batch.tcl |
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
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,14 +1,18 @@ | ||
############################################################################## | ||
# This file is part of 'SLAC Firmware Standard Library'. | ||
# It is subject to the license terms in the LICENSE.txt file found in the | ||
# top-level directory of this distribution and at: | ||
# https://confluence.slac.stanford.edu/display/ppareg/LICENSE.html. | ||
# No part of 'SLAC Firmware Standard Library', including this file, | ||
# may be copied, modified, propagated, or distributed except according to | ||
# the terms contained in the LICENSE.txt file. | ||
############################################################################## | ||
|
||
## \file vivado_wis.tcl | ||
# \brief Creates a tcl script that copies the current values of the KotoDpm project's | ||
# Linux OS environment variables. The purpose of the init.tcl output script is to | ||
# properly establish the environment variables within the Windows version of Vivado without the need | ||
# to first load Cygwin. This is useful because while using Vivado with Cygwin, Vivado runs roughly 2x slower. | ||
## Dependencies: system_vivado.mk | ||
## Author: Joshua Robinson | ||
## Author Email: [email protected] | ||
## Last Updated: 12/22/2017 | ||
############################################################################### | ||
|
||
# Get variables and procedures | ||
source -quiet $::env(RUCKUS_DIR)/vivado_env_var.tcl | ||
|