Name Date Size #Lines LOC

..--

patches/linux/H05-Jun-2025-419415

readme.txtH A D05-Jun-20251.8 KiB7752

readme.txt

1*******************************
2QMTECH Zynq XC7Z010 Starter Kit
3*******************************
4
5This file documents the Buildroot support for the QMTECH [1] Zynq
6XC7Z010 Starter Kit [2]. It is a low cost (~55$) Zynq based
7development board. The board user manual is available at
8[3]. Additional files are available on Github [4].
9
10
11Build
12=====
13
14First, configure Buildroot for the QMTECH Zynq board:
15
16  make zynq_qmtech_defconfig
17
18Build all components:
19
20  make
21
22You will find in output/images/ the following files:
23  - boot.bin
24  - boot.vfat
25  - devicetree.dtb
26  - rootfs.cpio
27  - rootfs.cpio.gz
28  - rootfs.cpio.uboot
29  - rootfs.tar
30  - sdcard.img
31  - u-boot.bin
32  - u-boot.img
33  - uImage
34  - zynq-qmtech.dtb
35
36
37Create a bootable micro SD card
38===============================
39
40To determine the device associated to the micro SD card have a look in
41the /proc/partitions file:
42
43  cat /proc/partitions
44
45Buildroot prepares a bootable "sdcard.img" image in the output/images/
46directory, ready to be dumped on a micro SD card. Launch the following
47command as root:
48
49  dd if=output/images/sdcard.img of=/dev/<your-sd-device>
50
51*** WARNING! This will destroy all the card content. Use with care! ***
52
53
54Boot the QMTECH Zynq board
55==========================
56
57To boot your newly created system:
58- put a mini USB cable into the J4 Debug USB Port and connect using a
59  terminal emulator at 115200 bps, 8n1,
60- put the prepared micro SD card in the J2 micro SD card slot,
61- plug the 5V power supply on the JP4 barrel jack.
62
63Enjoy!
64
65
66[1]. QMTECH:
67     http://www.chinaqmtech.com/
68
69[2]. QMTECH Zynq XC7Z010 Starter Kit Product Page:
70     http://www.chinaqmtech.com/xilinx_zynq_soc
71
72[3]. QMTECH Zynq XC7Z010 Starter Kit Hardware User Manual:
73     http://www.chinaqmtech.com/filedownload/32552
74
75[4]. QMTECH Github:
76     https://github.com/ChinaQMTECH/ZYNQ_STARTER_KIT
77