Skip to content

Latest commit

 

History

History
54 lines (38 loc) · 1.48 KB

ultra96-desktop.md

File metadata and controls

54 lines (38 loc) · 1.48 KB

Install Ubuntu 20.04(Desktop) to Ultra96

Downlowd from github

Note: Downloading the entire repository is time consuming, so download only the branch you need.

shell$ git clone --depth=1 --branch v2020.2-desktop-rc1 git://github.com/ikwzm/ZynqMP-FPGA-Ubuntu20.04-Ultra96
shell$ cd ZynqMP-FPGA-Ubuntu20.04-Ultra96
shell$ git lfs pull

File Description

  • target/Ultra96
    • boot/
      • boot.bin : Stage 1 Boot Loader
      • uEnv.txt : U-Boot environment variables for linux boot
      • image-5.4.0-xlnx-v2020.2-zynqmp-fpga : Linux Kernel Image (use Git LFS)
      • devicetree-5.4.0-xlnx-v2020.2-zynqmp-fpga-ultra96.dtb : Linux Device Tree Blob
      • devicetree-5.4.0-xlnx-v2020.2-zynqmp-fpga-ultra96.dts : Linux Device Tree Source
  • ubuntu20.04-desktop-rootfs.tgz : Ubuntu 20.04 Desktop Root File System (use Git LFS)

Format SD-Card

./doc/install/format-disk.md

Write to SD-Card

Mount SD-Card

shell# mount /dev/sdc1 /mnt/usb1
shell# mount /dev/sdc2 /mnt/usb2

Make Boot Partition

shell# cp target/Ultra96/boot/*                  /mnt/usb1

Make RootFS Partition

shell# tar xfz ubuntu20.04-desktop-rootfs.tgz -C /mnt/usb2

Unmount SD-Card

shell# umount /mnt/usb1
shell# umount /mnt/usb2