From 2cddf0f924e41f7175bbfc6540865092424e6080 Mon Sep 17 00:00:00 2001 From: pawel Date: Thu, 18 Aug 2016 17:46:06 +0000 Subject: U-Boot loader for A13 Olinuxino. To install this bootloader on an sdcard just do : dd if=/usr/local/share/u-boot/u-boot-boardname/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=notrunc,sync This version is patched so that: * ELF and API features are enabled. * The default environment is trimmed to just what's needed to boot. * The saveenv command writes to the file u-boot.env on the FAT partition. * The DTB file name is chosen based on the board model and passed to ubldr.bin using the fdtfile env variable. ubldr.bin loads the DTB from /boot/dtb/ on the FreeBSD partition. * By default, it loads PIE ubldr.bin from file ubldr.bin on the FAT partition to address 0x42000000, and launches it. For information about running FreeBSD on Allwinner boards, see https://wiki.freebsd.org/FreeBSD/arm/Allwinner For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot PR: 211951 Submitted by: Emmanuel Vadot --- sysutils/u-boot-a13-olinuxino/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 sysutils/u-boot-a13-olinuxino/Makefile (limited to 'sysutils/u-boot-a13-olinuxino/Makefile') diff --git a/sysutils/u-boot-a13-olinuxino/Makefile b/sysutils/u-boot-a13-olinuxino/Makefile new file mode 100644 index 000000000000..2d4cebe3565b --- /dev/null +++ b/sysutils/u-boot-a13-olinuxino/Makefile @@ -0,0 +1,14 @@ +# $FreeBSD$ + +PKGNAMESUFFIX= -a13-olinuxino + +COMMENT= Cross-build U-Boot loader for A13 Olinuxino + +LICENSE= GPLv2 + +MASTERDIR= ${.CURDIR}/../u-boot-olimex-a20-som-evb +DESCR= ${.CURDIR}/pkg-descr +MODEL= sun5i-a13-olinuxino +BOARD_CONFIG= A13-OLinuXino_defconfig + +.include "${MASTERDIR}/Makefile" -- cgit