Name Date Size #Lines LOC

..--

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-20251.3 KiB5837

readme.txt

1A10-OLinuXino-LIME
2
3Intro
4=====
5
6These are open hardware boards, all based on the Allwinner A10 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/A10/A10-OLinuXino-LIME/
11
12The following defconfigs are available:
13 - olimex_a10_olinuxino_lime_defconfig
14   for the A10-OLinuXino-LIME board using mainline kernel
15
16(see http://linux-sunxi.org/Linux_Kernel for more details)
17
18How to build it
19===============
20
21Configure Buildroot:
22
23    $ make <board>_defconfig
24
25Compile everything and build the rootfs image:
26
27    $ make
28
29Result of the build
30-------------------
31
32After building, you should get a tree like this:
33
34    output/images/
35    +-- boot.scr
36    +-- rootfs.ext2
37    +-- rootfs.ext4 -> rootfs.ext2
38    +-- sdcard.img
39    +-- sun4i-a10-olinuxino-lime.dtb (lime, mainline)
40    +-- u-boot.bin
41    +-- u-boot-sunxi-with-spl.bin
42    `-- zImage
43
44
45How to write the SD card
46========================
47
48The sdcard.img file is a complete bootable image ready to be written
49on the boot medium. To install it, simply copy the image to a uSD
50card:
51
52    # dd if=output/images/sdcard.img of=/dev/sdX
53
54Where 'sdX' is the device node of the uSD.
55
56Eject the SD card, insert it in the A10-OLinuXino board, and power it up.
57
58