xref: /OK3568_Linux_fs/buildroot/board/beaglebone/readme.txt (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1CircuitCo BeagleBone
2Texas Instuments AM335x Evaluation Module (TMDXEVM3358)
3
4Description
5===========
6
7This configuration will build a complete image for the beaglebone and
8the TI AM335x-EVM, the board type is identified by the on-board
9EEPROM. The configuration is based on the
10ti-processor-sdk-06.01.00.08. Device tree blobs for beaglebone
11variants and the evm-sk are built too.
12
13For Qt5 support support use the beaglebone_qt5_defconfig.
14
15How to build it
16===============
17
18Select the default configuration for the target:
19$ make beaglebone_defconfig
20
21Optional: modify the configuration:
22$ make menuconfig
23
24Build:
25$ make
26
27Result of the build
28===================
29output/images/
30+-- am335x-boneblack.dtb
31+-- am335x-bone.dtb
32+-- am335x-evm.dtb
33+-- am335x-evmsk.dtb
34+-- boot.vfat
35+-- MLO
36+-- rootfs.ext2
37+-- rootfs.tar
38+-- sdcard.img
39+-- u-boot.img
40+-- uEnv.txt
41+-- zImage
42
43To copy the image file to the sdcard use dd:
44$ dd if=output/images/sdcard.img of=/dev/XXX
45
46
47Running Qt5 hellowindow opengl demo:
48===================
49# export QT_QPA_EGLFS_KMS_CONFIG=/etc/qt5/eglfs_kms_cfg.json
50# export QT_QPA_PLATFORM=eglfs
51# export QT_QPA_EGLFS_INTEGRATION=none
52# /usr/lib/qt/examples/opengl/hellowindow/hellowindow
53
54
55Tested hardware
56===============
57am335x-evm (rev. 1.1A)
58beagleboneblack (rev. A5A)
59beaglebone (rev. A6)
60
612020, Adam Duskett <aduskett@gmail.com>
622016, Lothar Felten <lothar.felten@gmail.com>
63