diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2015-07-25 11:15:13 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-07-26 18:31:59 +0200 |
commit | d705809c7a32d6868a742b790648a65857f21197 (patch) | |
tree | 7a4fcc02462349610190636f4733dbb24bd51ef7 /package/rpi-userland/0005-disable-missing-all-apps.patch | |
parent | 70b0640a2b72f6160244bdc1ae2b060367cd2a41 (diff) | |
download | buildroot-d705809c7a32d6868a742b790648a65857f21197.tar.gz buildroot-d705809c7a32d6868a742b790648a65857f21197.zip |
package/rpi-userland: add option to install hello-pi examples
rpi-userland comes with a set of demo programs that can be useful to
understand how to program HW-accelerated video/3D/fft/... on the RPi.
They can also be used to validate that the hardware is working properly.
[Thomas: explicitly pass ALL_APPS=OFF when
BR2_PACKAGE_RPI_USERLAND_HELLO is disabled.]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/rpi-userland/0005-disable-missing-all-apps.patch')
-rw-r--r-- | package/rpi-userland/0005-disable-missing-all-apps.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/package/rpi-userland/0005-disable-missing-all-apps.patch b/package/rpi-userland/0005-disable-missing-all-apps.patch new file mode 100644 index 0000000000..520c7be3b5 --- /dev/null +++ b/package/rpi-userland/0005-disable-missing-all-apps.patch @@ -0,0 +1,30 @@ +From 249f6c8b44581083dfb16ebf66bfe94f7c9fb163 Mon Sep 17 00:00:00 2001 +From: "Yann E. MORIN" <yann.morin.1998@free.fr> +Date: Fri, 24 Jul 2015 20:20:33 +0200 +Subject: [PATCH] host-applications: disable missing applications + +Those applications are missing from the public rpi-firmware package, so +do not even try to build them. + +Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> +--- + host_applications/linux/CMakeLists.txt | 2 -- + 1 file changed, 2 deletions(-) + +diff --git a/host_applications/linux/CMakeLists.txt b/host_applications/linux/CMakeLists.txt +index ea4e016..4a87862 100644 +--- a/host_applications/linux/CMakeLists.txt ++++ b/host_applications/linux/CMakeLists.txt +@@ -10,9 +10,7 @@ add_subdirectory(apps/smem) + add_subdirectory(libs/debug_sym) + + if(ALL_APPS) +- add_subdirectory(apps/vcdbg) + # add_subdirectory(apps/smct) +- add_subdirectory(apps/edid_parser) + add_subdirectory(apps/hello_pi) + endif() + +-- +1.9.1 + |