Cubietruck

The Cubietruck is an Allwinner A20 dual core based developer board, with a very wide range of IO options. The board is set apart by offering SATA and an extended pin interface for low level access to the SOC.

Board features:

  • Mali400mp2, OpenGL ES GPU
  • 2GB DDR3 @480MHz
  • VGA and HDMI 1080p Output
  • Gigabit Ethernet
  • 8Gb Nand Flash
  • Wifi+BT wireless connection with antenna on-board
  • 2 USB Host, 1 micro SD slot, 1 SATA, 1 IR
  • Headers exposing I2C, SPI, RGB/LVDS, CSI/TS, FM-IN, ADC, CVBS, VGA, SPDIF-OUT, R-TP
Architecture
ARMv7 Cortex-A7
Processor
Allwinner A20 1GHz Dual-core
RAM
2GB
NAND
8GB
SD
Micro SD
USB
2
SATA
1
Ethernet
Gigabit
Wireless
B/G, Bluetooth

Install to a micro SD card

Replace sdX in the following instructions with the device name for the SD card as it appears on your computer.

  1. Zero the beginning of the SD card:
    dd if=/dev/zero of=/dev/sdX bs=1M count=8
  2. Start fdisk to partition the SD card:
    fdisk /dev/sdX
  3. At the fdisk prompt, delete old partitions and create a new one:
    1. Type o. This will clear out any partitions on the drive.
    2. Type p to list partitions. There should be no partitions left.
    3. Now type n, then p for primary, 1 for the first partition on the drive, 2048 for the first sector, and then press ENTER to accept the default last sector.
    4. Write the partition table and exit by typing w.
  4. Create the ext4 filesystem:
    mkfs.ext4 /dev/sdX1
  5. Mount the filesystem:
    mkdir mnt
    mount /dev/sdX1 mnt
  6. Download and extract the root filesystem:
    wget http://os.archlinuxarm.org/os/ArchLinuxARM-armv7-latest.tar.gz
    bsdtar -xpf ArchLinuxARM-armv7-latest.tar.gz -C mnt
    sync
  7. Install the U-Boot bootloader:
    wget http://os.archlinuxarm.org/os/sunxi/boot/cubietruck/u-boot-sunxi-with-spl.bin
    dd if=u-boot-sunxi-with-spl.bin of=/dev/sdX bs=1024 seek=8
    wget http://os.archlinuxarm.org/os/sunxi/boot/cubietruck/boot.scr -O mnt/boot/boot.scr
    umount mnt
    sync
  8. Insert the micro SD card into the Cubietruck, connect ethernet, and apply 5V power.
  9. Use the serial console or SSH to the IP address given to the board by your router.
    • Login as the default user alarm with the password alarm.
    • The default root password is root.
  10. Initialize the pacman keyring and populate the Arch Linux ARM package signing keys:
    pacman-key --init
    pacman-key --populate archlinuxarm


Install the U-Boot package

  1. In order to receive updates to the U-Boot bootloader, after logging into the system type:
    pacman -Syu uboot-cubietruck
  2. When prompted, press y and hit enter to flash the bootloader to the SD card.
  3. Merge any pacnew files created by the package overwriting the manually installed bootloader files.


Install to USB or SATA

Replace sdX in the following instructions with the device name for the USB or SATA drive as it appears on your computer.

  1. Zero the beginning of the SD card:
    dd if=/dev/zero of=/dev/sdX bs=1M count=8
  2. Install the U-Boot bootloader:
    wget http://os.archlinuxarm.org/os/sunxi/boot/cubietruck/u-boot-sunxi-with-spl.bin
    dd if=u-boot-sunxi-with-spl.bin of=/dev/sdX bs=1024 seek=8
    sync
  3. Start fdisk to partition the USB or SATA drive:
    fdisk /dev/sdX
  4. At the fdisk prompt, delete old partitions and create a new one:
    1. Type o. This will clear out any partitions on the drive.
    2. Type p to list partitions. There should be no partitions left.
    3. Now type n, then p for primary, 1 for the first partition on the drive, 2048 for the first sector, and then press ENTER to accept the default last sector.
    4. Write the partition table and exit by typing w.
  5. Create the ext4 filesystem:
    mkfs.ext4 /dev/sdX1
  6. Mount the filesystem:
    mkdir mnt
    mount /dev/sdX1 mnt
  7. Download and extract the root filesystem:
    wget http://os.archlinuxarm.org/os/ArchLinuxARM-armv7-latest.tar.gz
    bsdtar -xpf ArchLinuxARM-armv7-latest.tar.gz -C mnt
  8. Install the U-Boot bootloader boot files:
    wget http://os.archlinuxarm.org/os/sunxi/boot/cubietruck/boot.scr -O mnt/boot/boot.scr
    umount mnt
    sync
  9. Insert the micro SD card into the Cubietruck, connect the USB or SATA drive, connect ethernet, and apply 5V power.
  10. Use the serial console or SSH to the IP address given to the board by your router.
    • Login as the default user alarm with the password alarm.
    • The default root password is root.
  11. Initialize the pacman keyring and populate the Arch Linux ARM package signing keys:
    pacman-key --init
    pacman-key --populate archlinuxarm
  12. Follow the previous section to install the U-Boot package.

Copyright ©2009-2022 Arch Linux ARM
The registered trademark Linux® is used pursuant to a sublicense from LMI, the exclusive licensee of Linus Torvalds, owner of the mark on a world-wide basis.
The Arch Linux™ name and logo are used under permission of the Arch Linux Project Lead.