Main Content

loadImageToTargetSDCardPath

Load board-specific SD card image files to target SoC device SD card location

Since R2020a

Description

loadImageToTargetSDCardPath(BoardName) loads the SD card image files of the specified board to the specified SD card drive location on the target SoC device with default IP address by using Ethernet. The SD card image files contain a bootloader and the suitable operating system information.

loadImageToTargetSDCardPath(BoardName,Name,Value) specifies options using one or more name-value arguments. For example, 'Gateway','192.168.0.4' sets the gateway for the network interface.

Input Arguments

collapse all

Targeted SoC board name, specified as one of these values.

  • 'ZC702' — Xilinx® Zynq®-7000 ZC702

  • 'ZC706' — Xilinx Zynq-7000 ZC706

  • 'ZedBoard' — Xilinx Zynq ZedBoard™

  • 'ZCU102' — Xilinx Zynq UltraScale+™ MPSoC ZCU102 Evaluation Kit

  • 'ZCU111' — Xilinx Zynq UltraScale+ RFSoC ZCU111 Evaluation Kit

  • 'ZCU216' — Xilinx Zynq UltraScale+ RFSoC ZCU216 Evaluation Kit

Data Types: char | string

Name-Value Arguments

Specify optional pairs of arguments as Name1=Value1,...,NameN=ValueN, where Name is the argument name and Value is the corresponding value. Name-value arguments must appear after other arguments, but the order of the pairs does not matter.

Before R2021a, use commas to separate each name and value, and enclose Name in quotes.

Example: loadImageToTargetSDCardPath('ZC706','DeviceAddress','192.168.10.2','Gateway','192.168.10.1');

Internet protocol (IP) address of the target SoC device, specified as a character vector, string scalar, or 1-by-2 cell array. The target IP address must be a set of four numbers consisting of integers in the range [0, 255] that are separated by dots.

The default IP address for the Ethernet interface is '192.168.0.2'. The default IP address for the USB Ethernet interface is '192.168.1.2'.

Use this name-value argument to specify a nondefault address when you use the copyImageToHostSDCardPath function.

Example: '192.168.0.8'

Interface TypeDeviceAddress ValueData TypeExample
Ethernet onlyIP address of the Ethernet port on the SoC deviceCharacter vector or string scalar'192.168.0.8'
USB Ethernet onlyIP address of the USB Ethernet gadget on the SoC device, followed by usb0/Character vector or string scalar'usb0/192.168.3.2'
Both Ethernet and USB Ethernet

Cell 1 — IP address of the Ethernet port on the SoC device

Cell 2 — IP address of the USB Ethernet gadget on the SoC device, followed by usb0/

The order of these cells does not matter.

1-by-2 cell array of character vectors or string scalars{'192.168.3.2','usb0/10.10.10.4'} or {'usb0/10.10.10.4','192.168.3.2'}

Data Types: char | string | cell array

Gateway for the network interface, specified as a character vector or string scalar. The gateway must be a set of four numbers consisting of integers in the range [0, 255] that are separated by dots.

Example: '192.168.0.4'

Data Types: char | string

SD card image to copy, specified as a character vector or string scalar. Use this name-value argument to copy a custom SD card image.

The default SD card image is the SD card files that come with the HDL Verifier™ support package.

Example: 'C:\mywork\hdlv_prj\sdcard_image\zc706_sdcard_zynq7000'

Data Types: char | string

Username to log into the target Linux operating system, specified as a character vector or string scalar. Use this name-value argument to specify a nondefault user account name.

Example: 'John'

Data Types: char | string

Password associated with the specified username, specified as a character vector or string scalar. Use this name-value argument to configure a nondefault user account password.

Example: 'P@ssw0rd123'

Data Types: char | string

Version History

Introduced in R2020a