From: Bhargava Sreekantappa Gayathri <[email protected]>
set_hw_design function now takes dsa_type as an argument. This patch updates this function call in fsboot.tcl Signed-off-by: Bhargava Sreekantappa Gayathri <[email protected]> Signed-off-by: Manjukumar Matha <[email protected]> --- scripts/fsboot.tcl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/fsboot.tcl b/scripts/fsboot.tcl index 0f2c6c5..0545c85 100644 --- a/scripts/fsboot.tcl +++ b/scripts/fsboot.tcl @@ -3,6 +3,7 @@ source "$dir/base-hsi.tcl" set option { {hdf.arg "" "hardware Definition file"} + {hdf_type.arg "" "hardware Defination file type: hdf or dsa"} {processor.arg "" "target processor"} {rp.arg "" "repo path"} {app.arg "empty_application" "Application project fsbl, empty.."} @@ -22,7 +23,7 @@ set project "$params(ws)/$params(pname)" file delete -force "$project" -set_hw_design $project $params(hdf) +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)" } -- 2.7.4 -- _______________________________________________ meta-xilinx mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-xilinx
