688c9aab75
Nexbox A95X is a low cost Android STB based around an Amlogic s905(x) SoC (quad A53), 8/16GB eMMC and 1/2GB RAM. Both the s905 (gxbb) and s905x (gxl) variant is supported. This defconfig uses mainline Linux. As the mainline support for s905 is quite young, use the latest release candidate. There is currently no support for this board in U-Boot or sources available for the vendor U-Boot, so the defconfig doesn't build a u-boot and instead uses the existing U-Boot available in the eMMC. This also means that we need to wrap the kernel as uImage, which isn't suppported for aarch64. Instead this is done in the post-build script. Mainline aarch64 defconfig builds most drivers modular, so add mdev for module autoloading. [Peter: explicitly set BR2_cortex_a53=y] Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
49 lines
1.2 KiB
Plaintext
49 lines
1.2 KiB
Plaintext
Nexbox A95X
|
|
|
|
Intro
|
|
=====
|
|
|
|
Nexbox A95X is a low cost Android STB based around an Amlogic s905(x) SoC
|
|
(quad A53), 8/16GB eMMC and 1/2GB RAM. To use this defconfig, wires to the
|
|
internal UART solder pads must be added. See the linux-meson page for
|
|
details:
|
|
|
|
http://linux-meson.com/doku.php?id=nexbox_a95x_s905
|
|
|
|
Both the s905 (gxbb) and s905x (gxl) variant is supported.
|
|
|
|
This default configuration will allow you to start experimenting with the
|
|
buildroot environment for the A95X. With the current configuration it will
|
|
bring-up the board from microSD, and allow access through the serial
|
|
console.
|
|
|
|
How to build it
|
|
===============
|
|
|
|
Configure Buildroot:
|
|
|
|
$ make nexbox_a95x_defconfig
|
|
|
|
Compile everything and build the SD card image:
|
|
|
|
$ make
|
|
|
|
How to write the SD card
|
|
========================
|
|
|
|
Once the build process is finished you will have an image called "sdcard.img"
|
|
in the output/images/ directory.
|
|
|
|
Copy the bootable "sdcard.img" onto a microSD card with "dd":
|
|
|
|
$ sudo dd if=output/images/sdcard.img of=/dev/sdX
|
|
|
|
How to boot
|
|
===========
|
|
|
|
Insert microSD card and connect serial cable. Power board and stop
|
|
U-Boot by pressing any key. Boot the system by typing:
|
|
|
|
fatload mmc 0:1 0x1070000 boot.scr
|
|
autoscr 0x1070000
|