get_os - 2024.1 English

Vitis Tutorials: Embedded Software (XD260)

Document ID
XD260
Release Date
2024-06-19
Version
2024.1 English

This will be delivered as a list. Users can iterate through this

for os in domain_object.get_os():
    print(os)

Each object in the list will be delivered as a dictionary with keys; ‘os’, ‘current_path’, ‘possibleOptions’. For example, users can return all the OS

for os in domain_object.get_os():
    print(os['os'])