mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
11
board/nexbox/a95x/boot.txt
Normal file
11
board/nexbox/a95x/boot.txt
Normal file
@@ -0,0 +1,11 @@
|
||||
setenv bootargs console=ttyAML0,115200 earlyprintk root=/dev/mmcblk1p2 rootwait
|
||||
|
||||
fatload mmc 0:1 0x01080000 uImage
|
||||
|
||||
if itest.s "${aml_dt}" == "gxl_p212_2g"; then
|
||||
fatload mmc 0:1 $dtb_mem_addr meson-gxl-s905x-nexbox-a95x.dtb
|
||||
else
|
||||
fatload mmc 0:1 $dtb_mem_addr meson-gxbb-nexbox-a95x.dtb
|
||||
fi
|
||||
|
||||
bootm 0x1080000 - $dtb_mem_addr
|
||||
28
board/nexbox/a95x/genimage.cfg
Normal file
28
board/nexbox/a95x/genimage.cfg
Normal file
@@ -0,0 +1,28 @@
|
||||
image boot.vfat {
|
||||
vfat {
|
||||
files = {
|
||||
"uImage",
|
||||
"meson-gxbb-nexbox-a95x.dtb",
|
||||
"meson-gxl-s905x-nexbox-a95x.dtb",
|
||||
"boot.scr"
|
||||
}
|
||||
}
|
||||
size = 32M
|
||||
}
|
||||
|
||||
image sdcard.img {
|
||||
hdimage {
|
||||
}
|
||||
|
||||
partition boot {
|
||||
partition-type = 0xC
|
||||
bootable = "true"
|
||||
image = "boot.vfat"
|
||||
}
|
||||
|
||||
partition rootfs {
|
||||
partition-type = 0x83
|
||||
image = "rootfs.ext4"
|
||||
size = 512M
|
||||
}
|
||||
}
|
||||
12
board/nexbox/a95x/post-build.sh
Executable file
12
board/nexbox/a95x/post-build.sh
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
|
||||
BOARD_DIR="$(dirname $0)"
|
||||
MKIMAGE=$HOST_DIR/bin/mkimage
|
||||
|
||||
$MKIMAGE -C none -A arm64 -T script -d $BOARD_DIR/boot.txt $BINARIES_DIR/boot.scr
|
||||
|
||||
# vendor u-boot uses uImage
|
||||
if [ -e $BINARIES_DIR/Image ]; then
|
||||
$MKIMAGE -A arm64 -O linux -T kernel -C none -a 0x1080000 -e 0x1080000 \
|
||||
-n linux -d $BINARIES_DIR/Image $BINARIES_DIR/uImage
|
||||
fi
|
||||
14
board/nexbox/a95x/post-image.sh
Executable file
14
board/nexbox/a95x/post-image.sh
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
|
||||
BOARD_DIR="$(dirname $0)"
|
||||
GENIMAGE_CFG="${BOARD_DIR}/genimage.cfg"
|
||||
GENIMAGE_TMP="${BUILD_DIR}/genimage.tmp"
|
||||
|
||||
rm -rf "${GENIMAGE_TMP}"
|
||||
|
||||
genimage \
|
||||
--rootpath "${TARGET_DIR}" \
|
||||
--tmppath "${GENIMAGE_TMP}" \
|
||||
--inputpath "${BINARIES_DIR}" \
|
||||
--outputpath "${BINARIES_DIR}" \
|
||||
--config "${GENIMAGE_CFG}"
|
||||
48
board/nexbox/a95x/readme.txt
Normal file
48
board/nexbox/a95x/readme.txt
Normal file
@@ -0,0 +1,48 @@
|
||||
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
|
||||
Reference in New Issue
Block a user