Skip to content

Commit 109c1aa

Browse files
louiicmynguyenXS
andcommitted
Modify - change variable name to DONT_BUFFER_PORT
Signed-off-by: louiic <[email protected]> Co-authored-by: My Nguyen <[email protected]>
1 parent 657bde0 commit 109c1aa

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

flow/scripts/resize.tcl

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,11 @@ puts ""
2727
set_dont_use $::env(DONT_USE_CELLS)
2828

2929
# Do not buffer chip-level designs
30-
if {![info exists ::env(FOOTPRINT)] } {
31-
if { ![info exists ::env(PORTS_BUFFER)] || $::env(PORTS_BUFFER) == 1 } {
30+
# by default, IO ports will be buffered
31+
# to not buffer IO ports, set environment variable
32+
# DONT_BUFFER_PORT = 1
33+
if { ![info exists ::env(FOOTPRINT)] } {
34+
if { ![info exists ::env(DONT_BUFFER_PORTS)] || $::env(DONT_BUFFER_PORTS) == 0 } {
3235
puts "Perform port buffering..."
3336
buffer_ports
3437
}

0 commit comments

Comments
 (0)