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