python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / board / firefly / firefly-rk3288 / readme.txt
blobd6210857f10d78f13c867a25efe66e9f7dbb1fd6
1 Firefly RK3288
3 How to build it
4 ===============
6   $ make firefly_rk3288_defconfig
8 Then you can edit the build options using
10   $ make menuconfig
12 Compile all and build rootfs image:
14   $ make
16 Result of the build
17 -------------------
19 After building, you should get a tree like this:
21   output/images/
22   ├── rk3288-firefly.dtb
23   ├── rootfs.ext2
24   ├── rootfs.ext4 -> rootfs.ext2
25   ├── sdcard.img
26   ├── u-boot-dtb.img
27   ├── u-boot-spl-dtb.bin
28   ├── u-boot-spl-dtb.img
29   └── uImage
31 Prepare your SDCard
32 ===================
34 Buildroot generates a ready-to-use SD card image that you can flash directly to
35 the card. The image will be in output/images/sdcard.img.
36 You can write this image directly to an SD card device (i.e. /dev/xxx):
38   $ dd if=output/images/sdcard.img of=/dev/xxx
40 Finally, you can insert the SD card to the Firefly RK3288 board and boot it.