Date: Fri, 9 Jul 2021 18:51:30 GMT From: Bernhard Froehlich <decke@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: bfe768d33a24 - main - sysutils/u-boot-nanopi-r4s: u-boot port for FriendlyArm NanoPi R4S Message-ID: <202107091851.169IpU9F003875@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by decke: URL: https://cgit.FreeBSD.org/ports/commit/?id=bfe768d33a24d0184c023a2a05ba309252339f05 commit bfe768d33a24d0184c023a2a05ba309252339f05 Author: Bernhard Froehlich <decke@FreeBSD.org> AuthorDate: 2021-07-09 18:48:53 +0000 Commit: Bernhard Froehlich <decke@FreeBSD.org> CommitDate: 2021-07-09 18:51:22 +0000 sysutils/u-boot-nanopi-r4s: u-boot port for FriendlyArm NanoPi R4S U-Boot loader and related files for the FriendlyARM NanoPi-R4S (4GB/LPDDR4) To install this bootloader on an sdcard just do: dd if=/usr/local/share/u-boot/u-boot-nanopi-r4s/idbloader.img of=/path/to/sdcarddevice seek=64 bs=512 conv=sync dd if=/usr/local/share/u-boot/u-boot-nanopi-r4s/u-boot.itb of=/path/to/sdcarddevice seek=16384 bs=512 conv=sync WWW: https://www.denx.de/wiki/U-Boot PR: 257045 Approved by: manu@ --- sysutils/Makefile | 1 + sysutils/u-boot-nanopi-r4s/Makefile | 7 +++++++ sysutils/u-boot-nanopi-r4s/pkg-descr | 8 ++++++++ 3 files changed, 16 insertions(+) diff --git a/sysutils/Makefile b/sysutils/Makefile index 9151f2c32bb8..89c767d43c2c 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -1395,6 +1395,7 @@ SUBDIR += u-boot-nanopi-neo SUBDIR += u-boot-nanopi-neo-air SUBDIR += u-boot-nanopi-neo2 + SUBDIR += u-boot-nanopi-r4s SUBDIR += u-boot-olimex-a20-som-evb SUBDIR += u-boot-olinuxino-lime SUBDIR += u-boot-olinuxino-lime2 diff --git a/sysutils/u-boot-nanopi-r4s/Makefile b/sysutils/u-boot-nanopi-r4s/Makefile new file mode 100644 index 000000000000..ad4f32947328 --- /dev/null +++ b/sysutils/u-boot-nanopi-r4s/Makefile @@ -0,0 +1,7 @@ +MASTERDIR= ${.CURDIR}/../u-boot-master + +MODEL= nanopi-r4s +BOARD_CONFIG= nanopi-r4s-rk3399_defconfig +FAMILY= rk3399 + +.include "${MASTERDIR}/Makefile" diff --git a/sysutils/u-boot-nanopi-r4s/pkg-descr b/sysutils/u-boot-nanopi-r4s/pkg-descr new file mode 100644 index 000000000000..3e9c6433304f --- /dev/null +++ b/sysutils/u-boot-nanopi-r4s/pkg-descr @@ -0,0 +1,8 @@ +U-Boot loader and related files for the FriendlyARM NanoPi-R4S (4GB/LPDDR4) + +To install this bootloader on an sdcard just do: + +dd if=/usr/local/share/u-boot/u-boot-nanopi-r4s/idbloader.img of=/path/to/sdcarddevice seek=64 bs=512 conv=sync +dd if=/usr/local/share/u-boot/u-boot-nanopi-r4s/u-boot.itb of=/path/to/sdcarddevice seek=16384 bs=512 conv=sync + +WWW: https://www.denx.de/wiki/U-Boot
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202107091851.169IpU9F003875>