Skip to content
Snippets Groups Projects
Commit b1fefd28 authored by Reinier van der Walle's avatar Reinier van der Walle
Browse files

Added time_limited sof support

parent 4d3f32f1
No related branches found
No related tags found
No related merge requests found
......@@ -46,11 +46,17 @@ post_message "Revision name: $revision_name"
# Run adjust PLL script
source "$sdk_root/ip/board/bsp/adjust_plls_a10.tcl"
# Copy flat.rbf to parent directory
file copy -force flat.sof ../flat.sof
# Copy flat.sof and flat.rbf to parent directory
if {[file exists "flat_time_limited.sof"] == 1} {
post_message "Warning: flat.sof and flat.rbf are Time Limited!"
qexec "quartus_cpf -c --option=scripts/rbf_options_file flat_time_limited.sof ../flat.rbf"
file copy -force flat_time_limited.sof ../flat.sof
}
# Convert .sof to .rbf
qexec "quartus_cpf -c --option=scripts/rbf_options_file flat.sof ../flat.rbf"
if {[file exists "flat.sof"] == 1} {
qexec "quartus_cpf -c --option=scripts/rbf_options_file flat.sof ../flat.rbf"
file copy -force flat.sof ../flat.sof
}
if {$fast_compile} {
::aocl_fast_compile::check_logic_utilization $logic_limit
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment