Name Date Size #Lines LOC

..--

rootfs_overlay/boot/extlinux/H05-Jun-2025-54

boot.cmdH A D05-Jun-2025222 65

genimage.cfgH A D05-Jun-2025253 1815

post-build.shH A D05-Jun-202563 41

readme.txtH A D05-Jun-20252 KiB7048

readme.txt

1A20-OLinuXino-LIME and A20-OLinuXino-MICRO
2
3Intro
4=====
5
6These are open hardware boards, all based on the Allwinner A20 SoC.
7
8for more details about the boards see the following pages:
9 - https://www.olimex.com/Products/OLinuXino/open-source-hardware
10 - https://www.olimex.com/Products/OLinuXino/A20/A20-OLinuXino-MICRO/
11 - https://www.olimex.com/Products/OLinuXino/A20/A20-OLinuXino-LIME/
12 - https://www.olimex.com/Products/OLinuXino/A20/A20-OLinuXino-LIME2/
13
14The following defconfigs are available:
15 - olimex_a20_olinuxino_micro_defconfig
16   for the A20-OLinuXino-MICRO board using mainline kernel
17 - olimex_a20_olinuxino_lime_defconfig
18   for the A20-OLinuXino-LIME board using mainline kernel
19 - olimex_a20_olinuxino_lime2_defconfig
20   for the A20-OLinuXino-LIME2 board using mainline kernel
21
22The Mainline Kernel is already a much better choice for a headless server.
23And also the mainline kernel works fine even for a basic Linux desktop
24system running on top of a simple framebuffer, which may be good enough for
25the users who do not need fancy 3D graphics or video playback acceleration.
26
27(see http://linux-sunxi.org/Linux_Kernel for more details)
28
29How to build it
30===============
31
32Configure Buildroot:
33
34    $ make <board>_defconfig
35
36Compile everything and build the rootfs image:
37
38    $ make
39
40Result of the build
41-------------------
42
43After building, you should get a tree like this:
44
45    output/images/
46    +-- rootfs.ext2
47    +-- rootfs.ext4 -> rootfs.ext2
48    +-- sdcard.img
49    +-- sun7i-a20-olinuxino-lime.dtb (lime, mainline)
50    +-- sun7i-a20-olinuxino-lime2.dtb (lime2, mainline)
51    +-- sun7i-a20-olinuxino-micro.dtb (micro, mainline)
52    +-- u-boot.bin
53    +-- u-boot-sunxi-with-spl.bin
54    `-- zImage
55
56
57How to write the SD card
58========================
59
60The sdcard.img file is a complete bootable image ready to be written
61on the boot medium. To install it, simply copy the image to a uSD
62card:
63
64    # dd if=output/images/sdcard.img of=/dev/sdX
65
66Where 'sdX' is the device node of the uSD.
67
68Eject the SD card, insert it in the A20-OLinuXino board, and power it up.
69
70