diff options
author | manu <manu@FreeBSD.org> | 2017-12-21 04:35:49 +0800 |
---|---|---|
committer | manu <manu@FreeBSD.org> | 2017-12-21 04:35:49 +0800 |
commit | 44fc5d3e1cf57ed0c082d45ab270e85a3f5982eb (patch) | |
tree | 6e306a68cbb8284dae7367555439d14bf4aee14d | |
parent | 4748d1769bb5b1fb4c141fbadf87a0b87e6fefda (diff) | |
download | freebsd-ports-gnome-44fc5d3e1cf57ed0c082d45ab270e85a3f5982eb.tar.gz freebsd-ports-gnome-44fc5d3e1cf57ed0c082d45ab270e85a3f5982eb.tar.zst freebsd-ports-gnome-44fc5d3e1cf57ed0c082d45ab270e85a3f5982eb.zip |
Add sysutils/u-boot-a64-olinuxino
A64-Olinuxino is a Single Board Computer based on the Allwinner A64 SoC.
Reviewed by: bapt
Approved by: bapt
Differential Revision: https://reviews.freebsd.org/D13562
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/u-boot-a64-olinuxino/Makefile | 10 | ||||
-rw-r--r-- | sysutils/u-boot-a64-olinuxino/pkg-descr | 9 |
3 files changed, 20 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index 8f3aa163af4a..ee5629f27db6 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -1202,6 +1202,7 @@ SUBDIR += tw_cli SUBDIR += tzdialog SUBDIR += u-boot-a13-olinuxino + SUBDIR += u-boot-a64-olinuxino SUBDIR += u-boot-bananapi SUBDIR += u-boot-bananapim2 SUBDIR += u-boot-beaglebone diff --git a/sysutils/u-boot-a64-olinuxino/Makefile b/sysutils/u-boot-a64-olinuxino/Makefile new file mode 100644 index 000000000000..9099a7c7c7fb --- /dev/null +++ b/sysutils/u-boot-a64-olinuxino/Makefile @@ -0,0 +1,10 @@ +# $FreeBSD$ + +MAINTAINER= uboot@FreeBSD.org +MASTERDIR= ${.CURDIR}/../u-boot-master + +MODEL= a64-olinuxino +BOARD_CONFIG= a64-olinuxino_defconfig +FAMILY= allwinner64 + +.include "${MASTERDIR}/Makefile" diff --git a/sysutils/u-boot-a64-olinuxino/pkg-descr b/sysutils/u-boot-a64-olinuxino/pkg-descr new file mode 100644 index 000000000000..05f9c41359d3 --- /dev/null +++ b/sysutils/u-boot-a64-olinuxino/pkg-descr @@ -0,0 +1,9 @@ +U-Boot loader and related files for the A64-Olinuxino. + +To install this bootloader on an sdcard just do: +dd if=/usr/local/share/u-boot/u-boot-a64-olinuxino/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync + +For information about running FreeBSD on Allwinner boards, see + https://wiki.freebsd.org/FreeBSD/arm/Allwinner + +WWW: http://www.denx.de/wiki/U-Boot |