Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
7f112f1
Fixed url generated path for branch release downloader
Zvckkk Mar 5, 2026
b3b299f
update file verification to skip properties.yaml
Zvckkk Mar 5, 2026
64da0a6
fixed lints
Zvckkk Mar 5, 2026
4cad51d
update ssh python command in checksum verification files
Zvckkk Mar 6, 2026
cd501b1
removing variant
macylibed9 Nov 7, 2025
e27a56e
microblaze bootfiles downloader update
Zvckkk Nov 7, 2025
124f3b8
moved the microblaze dlbootfiles to _get_files_boot_partition
Zvckkk Nov 11, 2025
ee2192f
cleared commit divergence from the original repository
Zvckkk Nov 11, 2025
3230c65
cherry-pick: ab943fc
tfcollins Sep 24, 2025
e61646d
Added board target name
macylibed9 Nov 13, 2025
dcace53
enable microblaze target with jtag and uart interface
Zvckkk Nov 19, 2025
4fc0158
microblaze downloader fixes and added a microblaze test for jtag and …
Zvckkk Nov 19, 2025
5fc71a2
added parameter
macylibed9 Nov 20, 2025
8d7f15e
fixed vivado path and refactored jtag and uart testing
Zvckkk Nov 20, 2025
3cbba59
updated uart communication support for MicroBlaze boards and created …
Zvckkk Nov 21, 2025
aff9660
Microblaze graph WIP
macylibed9 Nov 25, 2025
e34cb3f
added a microblaze flag for update bootfiles cli interface
Zvckkk Nov 26, 2025
cb54508
enabled microblaze boards in cli interface and added a monkey patch w…
tfcollins Nov 4, 2025
ce48568
skip get_sha in downloader for microblaze boards
Zvckkk Dec 3, 2025
31885b8
changed dutip to null when generating nebula-config
Zvckkk Dec 3, 2025
c7680ca
changed dutip to null when generating nebula-config, added a fix for …
Zvckkk Dec 3, 2025
8e5dd41
added a try catch method for ssh connection and dmesg commands
Zvckkk Dec 10, 2025
6093615
Fixed Lint
tagoylo Dec 18, 2025
df1d38e
removed Monkey Patch from Paramiko SSH connection
Zvckkk Jan 19, 2026
8314540
Code cleanup
Zvckkk Jan 22, 2026
23c37e8
Fixed Lints
Zvckkk Jan 23, 2026
f53c4bc
logic update for microblaze_enable flag
Zvckkk Feb 11, 2026
765d7f8
changed bearer token parameter
Zvckkk Apr 20, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions doc/microblaze_boot_test_flow.pu
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
@startuml Microblaze Boot and Test Flow
start
:Boot Downloader;
partition "Boot Downloader (MicroBlaze)" {
:Check if source is "artifactory";
:Set URL template for boot partition;
:Download required files (simpleImage.strip, system_top.bit);
:Transfer files to target machine (machine02);
}
:Netbox - Add Parameter;
:Generate Config Template;

partition "Load Bootfile (MicroBlaze)" {
:source /opt/Xilinx/Vivado/2021.1/settings64.sh;
:cd to project folder;
:Run xsdb;
:connect;
:power on board;
:targets (check device);
:target <n> (select board target);
:fpga -f system_top.bit;
:targets;
:target <n> (select microblaze target);
:dow simpleImage.strip;
:Open UART terminal (2nd terminal);
:screen <uart address> 115200;
:Record log;
:con (continue microblaze in xsdb);
:enter;
:root;
:analog;
}

:Linux Tests;
partition linux {
:dmesg | grep sysid;
:dmesg | grep failed;
:dmesg | grep error;
:iio_info;
:iio_info | grep iio:device;
:ifconfig;
}
stop
@enduml
17 changes: 17 additions & 0 deletions doc/microblaze_downloader_flow.pu
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
@startuml MicroBlaze Downloader Flow
start
:Check if source is "artifactory";
:Prepare URL template for boot partition;
:Check if microblaze is True;
if (microblaze?) then (yes)
:Set design_source_root to microblaze_images/{design_name};
:Download simpleImage.strip using _get_file;
:Download system_top.bit using _get_file;
:Files saved to outs directory;
:(Optional) Fetch build info and git SHA;
stop
else (no)
:[Other flow not shown];
stop
endif
@enduml
Loading