Name Date Size #Lines LOC

..--

boot.cmdH A D05-Jun-2025222 65

genimage.cfgH A D05-Jun-2025252 1815

post-build.shH A D05-Jun-202562 31

readme.txtH A D05-Jun-20251.1 KiB5133

readme.txt

1A33-OLinuXino
2
3Intro
4=====
5
6This board is based on Allwinner A33 SoC.
7
8Home Page: https://www.olimex.com/Products/OLinuXino/A33/A33-OLinuXino/open-source-hardware
9Wiki: 	   https://wiki.amarulasolutions.com/bsp/sunxi/a33/Olimex-A33-Olinuxino.html
10
11How to build it
12===============
13
14Configure Buildroot:
15
16    $ make olimex_a33_olinuxino_defconfig
17
18Build everything by running:
19
20    $ make
21
22Result of the build
23-------------------
24
25After building, you should get a tree like this:
26
27output/images/
28├── boot.scr
29├── rootfs.ext2
30├── rootfs.ext4 -> rootfs.ext2
31├── rootfs.tar
32├── sdcard.img
33├── sun8i-a33-olinuxino.dtb
34├── u-boot.bin
35├── u-boot-sunxi-with-spl.bin
36└── zImage
37
38
39How to write the SD card
40========================
41
42The sdcard.img file is a complete bootable image ready to be written
43on the boot medium. To install it, simply copy the image to a uSD
44card:
45
46    # dd if=output/images/sdcard.img of=/dev/sdX
47
48Where 'sdX' is the device node of the uSD.
49
50Eject the SD card, insert it in the A33-OLinuXino board, and power it up.
51