Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For 2020.1 and above releases common defconfig is being made. 


PlatformU-boot defconfig
All Zynq UltraScale+ (except for mini)xilinx_zynqmp_virt_defconfig
All Zynq (except for mini)xilinx_zynq_virt_defconfig


To build U-boot for ZC702 board, follow below steps. 


Code Block
themeMidnight
make distclean
make xilinx_zynq_virt_defconfig
export DEVICE_TREE="zynq-zc702"
make

device tree can be found under arch/arm/dts/ with the name zynq-zc702.dts

A dtb with the name zynq-zc702.dtb will be generated under arch/arm/dts after the build.


To build U-boot for ZCU102 rev1.0 board, follow below steps. 


Code Block
themeMidnight
make distclean
make xilinx_zynqmp_virt_defconfig
export DEVICE_TREE="zynqmp-zcu102-rev1.0"
make


device tree can be found under arch/arm/dts/ with the name zynqmp-zcu102-rev1.0.dts.

...