diff options
author | Brad Davis <brd@FreeBSD.org> | 2015-11-07 01:11:30 +0000 |
---|---|---|
committer | Brad Davis <brd@FreeBSD.org> | 2015-11-07 01:11:30 +0000 |
commit | 1b96231b67b70b371313f431ce1c64b4f9ca6fe0 (patch) | |
tree | 9ff3f5febfa6699759b5ac168ffaa9a344c6ee81 | |
parent | 997c242d2a3548db2a5c97956482b277bc869f60 (diff) | |
download | freebsd-ports-1b96231b67b70b371313f431ce1c64b4f9ca6fe0.zip |
Add a new port of tools designed to work with the LEDs on ARM boards.
It initially supports the BeagleBone Black, but others will follow.
Approved by: bdrewery (mentor)
-rw-r--r-- | misc/Makefile | 1 | ||||
-rw-r--r-- | misc/raspbsd-led/Makefile | 15 | ||||
-rw-r--r-- | misc/raspbsd-led/distinfo | 2 | ||||
-rw-r--r-- | misc/raspbsd-led/pkg-descr | 4 |
4 files changed, 22 insertions, 0 deletions
diff --git a/misc/Makefile b/misc/Makefile index ecf605f03107..eaa1bbdd10fe 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -392,6 +392,7 @@ SUBDIR += qt5ct SUBDIR += quotes SUBDIR += raspberrypi-userland + SUBDIR += raspbsd-led SUBDIR += ree SUBDIR += rfc SUBDIR += ringtonetools diff --git a/misc/raspbsd-led/Makefile b/misc/raspbsd-led/Makefile new file mode 100644 index 000000000000..ed66494b77f1 --- /dev/null +++ b/misc/raspbsd-led/Makefile @@ -0,0 +1,15 @@ +# $FreeBSD$ + +PORTNAME= raspbsd-led +PORTVERSION= 0.1 +CATEGORIES= misc +DISTVERSIONPREFIX= v + +MAINTAINER= brd@FreeBSD.org +COMMENT= Misc LED programs for ARM boards + +USE_GITHUB= yes +GH_ACCOUNT= raspbsd +PLIST_FILES= sbin/flash-heartbeat-led + +.include <bsd.port.mk> diff --git a/misc/raspbsd-led/distinfo b/misc/raspbsd-led/distinfo new file mode 100644 index 000000000000..d2b0819a67bc --- /dev/null +++ b/misc/raspbsd-led/distinfo @@ -0,0 +1,2 @@ +SHA256 (raspbsd-raspbsd-led-v0.1_GH0.tar.gz) = 11d12360014fae4cfac42fe77db575592c30c3c7708b5e356010591efb7136ad +SIZE (raspbsd-raspbsd-led-v0.1_GH0.tar.gz) = 835 diff --git a/misc/raspbsd-led/pkg-descr b/misc/raspbsd-led/pkg-descr new file mode 100644 index 000000000000..c769079fec88 --- /dev/null +++ b/misc/raspbsd-led/pkg-descr @@ -0,0 +1,4 @@ +This provides LED tools for flashing the built-on LEDs found on many +ARM boards, such as the BeagleBone Black. + +WWW: https://github.com/RaspBSD/raspbsd-led |