diff options
author | jmcneill <jmcneill@pkgsrc.org> | 2017-06-02 15:13:41 +0000 |
---|---|---|
committer | jmcneill <jmcneill@pkgsrc.org> | 2017-06-02 15:13:41 +0000 |
commit | ecb775add4cbff30899b0669cbe07c6c93788165 (patch) | |
tree | 6ce9a90aa672816061aeb0b8ed5631f78a96b387 /sysutils/dtb-arm-vexpress | |
parent | a8fe931d8d6b2a6c218ac26af10d13b8b9dc8c24 (diff) | |
download | pkgsrc-ecb775add4cbff30899b0669cbe07c6c93788165.tar.gz |
Initial import of dtb-arm-vexpress.
The devicetree is a data structure for describing hardware. Rather than
hard coding every detail of a device into an operating system, many aspects
of the hardware can be described in a data structure that is passed to the
operating system at boot time.
This package includes Device Tree Blob (.dtb) files generated from
the Linux kernel for ARM Ltd. Versatile Express boards.
Diffstat (limited to 'sysutils/dtb-arm-vexpress')
-rw-r--r-- | sysutils/dtb-arm-vexpress/DESCR | 7 | ||||
-rw-r--r-- | sysutils/dtb-arm-vexpress/Makefile | 12 |
2 files changed, 19 insertions, 0 deletions
diff --git a/sysutils/dtb-arm-vexpress/DESCR b/sysutils/dtb-arm-vexpress/DESCR new file mode 100644 index 00000000000..ac1d7b765da --- /dev/null +++ b/sysutils/dtb-arm-vexpress/DESCR @@ -0,0 +1,7 @@ +The devicetree is a data structure for describing hardware. Rather than +hard coding every detail of a device into an operating system, many aspects +of the hardware can be described in a data structure that is passed to the +operating system at boot time. + +This package includes Device Tree Blob (.dtb) files generated from +the Linux kernel for ARM Ltd. Versatile Express boards. diff --git a/sysutils/dtb-arm-vexpress/Makefile b/sysutils/dtb-arm-vexpress/Makefile new file mode 100644 index 00000000000..169b858681f --- /dev/null +++ b/sysutils/dtb-arm-vexpress/Makefile @@ -0,0 +1,12 @@ +# $NetBSD: Makefile,v 1.1 2017/06/02 15:13:41 jmcneill Exp $ + +DTB_ARCH= arm +DTB_DEVICE= vexpress +DTB_DTS= vexpress-v2p-ca15-tc1.dts \ + vexpress-v2p-ca15_a7.dts \ + vexpress-v2p-ca5s.dts \ + vexpress-v2p-ca9.dts + +.include "../../sysutils/dtc/linux-dtb.mk" + +.include "../../mk/bsd.pkg.mk" |