mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-29 10:10:19 +00:00
80 lines
4.2 KiB
Plaintext
80 lines
4.2 KiB
Plaintext
== A20 OLinuXino Lime2 ==
|
|
|
|
{{attachment:a20-olinuxino-lime2.jpg|A20 OLinuXino Lime2|width=640,height=432}}
|
|
|
|
Olimex's [[https://www.olimex.com/Products/OLinuXino/A20/A20-OLinuXIno-LIME2/open-source-hardware|A20 OLinuXino Lime2]] is a fully Open Source Hardware (OSHW) single board computer. This means that the designer is actively helping people using the platform for their own designs, and supports them in adding hardware functionality and production advice. This is a part of freedom that is often overlooked, but very much aligned with the !FreedomBox goals. It uses the Allwinner A20 Dual Core ARM processor.
|
|
|
|
'''Important:''' Read [[FreedomBox/Hardware|general advice]] about hardware before building a !FreedomBox with this single board computer.
|
|
|
|
=== Similar Hardware ===
|
|
|
|
The following similar hardware will also work well with !FreedomBox.
|
|
|
|
* Olimex's [[https://www.olimex.com/Products/OLinuXino/A20/A20-OLinuXIno-LIME2-4GB/open-source-hardware|A20 OLinuXino Lime2 4GB]]. This hardware merely has extra 4GB NAND storage that is not used by !FreedomBox.
|
|
|
|
=== Download ===
|
|
|
|
!FreedomBox SD card [[FreedomBox/Download|images]] are available for this device. Follow the instructions on the [[FreedomBox/Download|download]] page to create a !FreedomBox SD card and boot the device. These SD card images are meant for use with the on-board SD card slot and won't work when used with a separate SD card reader connected via USB.
|
|
|
|
An alternative to downloading these images is to [[InstallingDebianOn/Allwinner|install Debian]] on the device and then [[FreedomBox/Hardware/Debian|install FreedomBox]] on it.
|
|
|
|
=== Availability ===
|
|
|
|
* Price: 45 EUR (A20 OLinuXino Lime2)
|
|
* Price: 55 EUR (A20 OLinuXino Lime2 4GB)
|
|
* [[https://www.olimex.com/Products/OLinuXino/A20/open-source-hardware|Olimex Store]]
|
|
|
|
=== Hardware ===
|
|
|
|
* Open Source Hardware (OSHW): [[https://github.com/OLIMEX/OLINUXINO/tree/master/HARDWARE|Yes]]
|
|
* CPU: Allwinner A20, ARM Cortex-A7 @ 1GHz dual-core
|
|
* RAM: 1 GiB DDR3
|
|
* Storage: 4 GB NAND flash built-in (only on 4GB model), 1x microSD slot
|
|
* Architecture: armhf
|
|
* Ethernet: 10/100/1000, RJ45
|
|
* !WiFi: None, use a [[FreedomBox/Hardware/USBWiFi|USB WiFi device]]
|
|
* SATA: 1x port
|
|
|
|
=== Non-Free Status ===
|
|
|
|
* Non-free blobs required: No
|
|
* !WiFi: Not available
|
|
* Boot Firmware: [[https://linux-sunxi.org/BROM|BROM]] (GPLV2+)
|
|
|
|
=== Known Issues ===
|
|
|
|
* Revision G2 (written on the board): The current stable Debian11/bullseye image (from 2021-08-27) '''will not start an Ethernet connection!''' This means you can not continue with the installation process at first. This can be fixed by following [[https://wiki.debian.org/InstallingDebianOn/Allwinner#Olimex_A20-OLinuXino-LIME2__rev._F_and_newer_and_Debian11.2F_bullseye_kernel | this description]] after you [[https://wiki.debian.org/FreedomBox/Download#Installation | copied the image to your SD card]]. Or you Download and use the [[https://ftp.freedombox.org/pub/freedombox/pioneer/|Pioneer Edition image]] to fix the issue. It contains a slightly [[https://salsa.debian.org/freedombox-team/u-boot/commit/2cb18893ef|modified u-boot]].
|
|
* Revision G2 hardware has also [[DebianBug:927397|poor performance when transmitting Ethernet data in Gigabit mode]] for older FreedomBox releases. The procedure above or for rev. C fixes this.
|
|
|
|
* Revision C hardware has [[DebianBug:845128|poor performance when receiving Ethernet data in Gigabit mode]]. To workaround the problem, you can switch to 100 Mbps mode instead of Gigabit mode. Login to your !FreedomBox as root (or plugin the SD card into another computer) and create the file /etc/NetworkManager/dispatcher.d/20-fix-ethernet-problem with the following contents:
|
|
{{{
|
|
#!/bin/bash
|
|
|
|
set -e # Exit with code on error
|
|
|
|
IFACE="$1"
|
|
ACTION="$2"
|
|
|
|
if [[ "$IFACE" != "eth0" ]]; then
|
|
exit 0
|
|
fi
|
|
|
|
case ${ACTION} in
|
|
up)
|
|
logger "Setting up $IFACE in 100Mbps mode"
|
|
mii-tool eth0 -A 100BaseTx-FD
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
}}}
|
|
|
|
* Revision K hardware is [[https://salsa.debian.org/freedombox-team/freedom-maker/issues/148|not working properly]].
|
|
|
|
## END_INCLUDE
|
|
|
|
<<Include(FreedomBox/Portal)>>
|
|
|
|
----
|
|
CategoryFreedomBox
|