summaryrefslogtreecommitdiff
path: root/recipes-misc
diff options
context:
space:
mode:
authorNic Costa <nic.costa@gmail.com>2019-02-28 09:10:58 -0600
committerNicolas Costa <nic.costa@arm.com>2019-03-04 09:25:55 -0600
commit736dec3d41988b82851f76743d525e180a127c0a (patch)
treedc4ca3758b17a89c3e7d88b267a6b03e5f62ac68 /recipes-misc
parent14092e4dab7c59bc2b86db2b8e3b920db87e039a (diff)
remove unused packages and scripts
these packages and scripts are not used in our build process or not used by our userland apps.
Diffstat (limited to 'recipes-misc')
-rw-r--r--recipes-misc/iqaudio-mute/files/init9
-rw-r--r--recipes-misc/iqaudio-mute/iqaudio-mute_1.0.bb24
-rw-r--r--recipes-misc/serialecho/serialecho_git.bb17
-rw-r--r--recipes-misc/spiloop/spiloop_git.bb17
4 files changed, 0 insertions, 67 deletions
diff --git a/recipes-misc/iqaudio-mute/files/init b/recipes-misc/iqaudio-mute/files/init
deleted file mode 100644
index 9638ffa..0000000
--- a/recipes-misc/iqaudio-mute/files/init
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-# Set gpio22 high, this enables (unmutes) the IQAudio DigiAMP
-
-if [ ! -d /sys/class/gpio/gpio22 ]; then
- echo 22 > /sys/class/gpio/export
- echo high > /sys/class/gpio/gpio22/direction
-else
- echo 1 > /sys/class/gpio/gpio22/value
-fi
diff --git a/recipes-misc/iqaudio-mute/iqaudio-mute_1.0.bb b/recipes-misc/iqaudio-mute/iqaudio-mute_1.0.bb
deleted file mode 100644
index a6d1a45..0000000
--- a/recipes-misc/iqaudio-mute/iqaudio-mute_1.0.bb
+++ /dev/null
@@ -1,24 +0,0 @@
-SUMMARY = "IQAudio Pi-DigiAMP+ gpio mute pin enable"
-HOMEPAGE = "http://www.jumpnowtek.com/"
-SECTION = "console"
-
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
-
-SRC_URI += "file://init"
-
-PR = "r0"
-
-S = "${WORKDIR}"
-
-inherit update-rc.d
-
-INITSCRIPT_NAME = "iqaudio-mute-gpio"
-INITSCRIPT_PARAMS = "start 30 5 ."
-
-do_install() {
- install -d ${D}${sysconfdir}/init.d
- install -m 0755 ${S}/init ${D}${sysconfdir}/init.d/iqaudio-mute-gpio
-}
-
-FILES_${PN} += "${sysconfdir}"
diff --git a/recipes-misc/serialecho/serialecho_git.bb b/recipes-misc/serialecho/serialecho_git.bb
deleted file mode 100644
index 5aaabb6..0000000
--- a/recipes-misc/serialecho/serialecho_git.bb
+++ /dev/null
@@ -1,17 +0,0 @@
-SUMMARY = "Utility to test serial ports in a loopback configuration"
-LICENSE = "GPLv2"
-LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6"
-
-SRCREV = "7acc974041f2e8cb55f892140b306a8c76093811"
-SRC_URI = "git://github.com/scottellis/serialecho.git"
-
-S = "${WORKDIR}/git"
-
-TARGET_CC_ARCH += "${LDFLAGS}"
-
-do_install() {
- install -d ${D}${bindir}
- install -m 755 serialecho ${D}${bindir}
-}
-
-FILES_${PN} = "${bindir}"
diff --git a/recipes-misc/spiloop/spiloop_git.bb b/recipes-misc/spiloop/spiloop_git.bb
deleted file mode 100644
index 895264a..0000000
--- a/recipes-misc/spiloop/spiloop_git.bb
+++ /dev/null
@@ -1,17 +0,0 @@
-SUMMARY = "Utility to test spidev in a loopback configuration"
-LICENSE = "GPLv2"
-LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6"
-
-SRCREV = "cc1deb3c947ddc04966805b7ebff45ada4f2535c"
-SRC_URI = "git://github.com/scottellis/spiloop.git"
-
-S = "${WORKDIR}/git"
-
-TARGET_CC_ARCH += "${LDFLAGS}"
-
-do_install() {
- install -d ${D}${bindir}
- install -m 755 spiloop ${D}${bindir}
-}
-
-FILES_${PN} = "${bindir}"