Prepare the Common Images - 2023.2 English

Vitis Tutorials: Vitis Platform Creation (XD101)

Document ID
XD101
Release Date
2023-12-26
Version
2023.2 English
  1. Download common image from AMD website download page..

  2. Navigate to the WorkSpace folder that you created in step1 and place the image package in WorkSpace folder.

    cd WorkSpace
    tree -L 1     # to see the directory hierarchy
    .
    ├── custom_hardware_platform
    └── xilinx-versal-common-v2023.2.tar.gz
    
  3. Extract the common image.

    Please follow steps below to extract the common image.

    cd WrokSpace
    tar xvf ../xilinx-versal-common-v2023.2.tar.gz -C .
    

    You can see the xilinx-versal-common-v2023.2 folder which contains some components located in WorkSpace folder as shown below.

    tree -L 2
    .
    ├── xilinx-versal-common-v2023.2
    │   ├── bl31.elf
    │   ├── boot.scr
    │   ├── Image
    │   ├── README.txt
    │   ├── rootfs.ext4
    │   ├── rootfs.manifest
    │   ├── rootfs.tar.gz
    │   ├── sdk.sh
    │   └── u-boot.elf
    

From the above picture, you can see boot file, kernel image, rootfs, and SDK tool are ready. DTB is not available. In the subsequent step, we will focus on preparing the DTB file.