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
dtgen.tcl
set dir [file dirname [info script]] source $dir/base-hsi.tcl set option { {hdf.arg "" "hardware Definition file"} {hdf_type.arg "hdf" "hardware Defination file type: hdf or dsa"} {processor.arg "" "target processor"} {rp.arg "" "repo path"} {app.arg "empty_application" "Application project fsbl, empty.."} {lib.arg "" "Add library"} {pname.arg "" "Project Name"} {bspname.arg "" "standalone bsp name"} {ws.arg "" "Work Space Path"} {hwpname.arg "" "hardware project name"} {arch.arg "64" "32/64 bit architecture"} {do_compile.arg "0" "Build the project"} {forceconf.arg "0" "Apply the yaml configs on existing project"} {yamlconf.arg "" "Path to Config File"} } set usage "A script to generate and compile device-tree" array set params [::cmdline::getoptions argv $option $usage] set project "$params(ws)/$params(pname)" set_hw_design $project $params(hdf) $params(hdf_type) if { [catch {hsi set_repo_path $params(rp)} res] } { error "Failed to set repo path $params(rp)" } if {[catch {hsi create_sw_design $params(app) \ -os device_tree -proc $params(processor)} res] } { error "create_sw_design failed for $params(app)" } if {[file exists $params(yamlconf)]} { set_properties $params(yamlconf) } if {[catch {hsi generate_target -dir $project} res]} { error "generate_target failed" } if { [catch {hsi close_hw_design [hsi current_hw_design]} res] } { error "Failed to close hw design [hsi current_hw_design]" }
Report a bug