Files

copied

There are no circuits or boards in this repository.

Last update 7 years 2 months by Manjukumar Matha
Filesscripts
..
app.tcl
base-hsi.tcl
bitstream.tcl
dtgen.tcl
fsboot.tcl
mb-realoc
base-hsi.tcl
#requires hdf repo path proc dir yaml-file-location package require cmdline package require yaml proc get_os_config_list {} { set prop_data [hsi report_property -all -return_string \ [hsi get_os] CONFIG.*] set conf_data [split $prop_data "\n"] set config_list {} foreach line $conf_data { if { [regexp "^CONFIG..*" $line matched] == 1 } { set config_name [split $line " "] set config_name [lindex $config_name 0] regsub -- "CONFIG." $config_name "" config_name lappend config_list $config_name } } return $config_list } proc set_properties { yamlconf } { set os_config_list [get_os_config_list] if { $yamlconf ne "" } { set conf_dict [::yaml::yaml2dict -file $yamlconf] if {[dict exists $conf_dict "bsp"]} { foreach prop [dict keys [dict get $conf_dict "bsp"]] { foreach action [dict keys \ [dict get $conf_dict "bsp" $prop]] { if { [lsearch -exact -nocase $os_config_list $prop] < 0} { continue } if { [catch {hsi set_property CONFIG.$prop \ [dict get $conf_dict "bsp" $prop $action] \ [hsi get_os]} res] } { error "NO BSP configuration available" } } } } } } proc set_hw_design {project hdf hdf_type} { file mkdir $project if { [catch { exec cp $hdf $project/hardware_description.$hdf_type } msg] } { puts "$::errorInfo" } if { [catch {openhw $project/hardware_description.$hdf_type} res] } { error "Failed to open hardware design \ $project/hardware_description.$hdf_type" } }
Report a bug