diff options
author | José Bollo <jose.bollo@iot.bzh> | 2018-02-08 09:57:25 +0100 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2018-02-13 11:02:00 +0100 |
commit | 0ffb178ea81ebcde3990dd8269ccc08ebbc83416 (patch) | |
tree | eb7db261cbbda2bb1ca31b962d9d2255a0931734 /meta-security/recipes-test/udp-smack-test/udp-smack-test.bb | |
parent | 4c1200c414361d35faf90ba887e012ab3cbab3db (diff) |
meta-security: Remove unused content
This unused content can be devided in two parts:
- setting and feature in bitbake classes
- tests
None are actually used by AGL.
Even if this content can be later included in distribution,
I prefer to remove it now.
Change-Id: I4e6a8ac6326986a5652a7c47614dcaa3db8cabb6
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'meta-security/recipes-test/udp-smack-test/udp-smack-test.bb')
-rw-r--r-- | meta-security/recipes-test/udp-smack-test/udp-smack-test.bb | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/meta-security/recipes-test/udp-smack-test/udp-smack-test.bb b/meta-security/recipes-test/udp-smack-test/udp-smack-test.bb deleted file mode 100644 index 478e3688d..000000000 --- a/meta-security/recipes-test/udp-smack-test/udp-smack-test.bb +++ /dev/null @@ -1,20 +0,0 @@ -SUMMARY = "Binary used to test smack udp sockets" -DESCRIPTION = "Server and client binaries used to test smack attributes on UDP sockets" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" - -SRC_URI = "file://udp_server.c \ - file://udp_client.c \ -" - -S = "${WORKDIR}" -do_compile() { - ${CC} udp_client.c ${LDFLAGS} -o udp_client - ${CC} udp_server.c ${LDFLAGS} -o udp_server -} - -do_install() { - install -d ${D}${bindir} - install -m 0755 udp_server ${D}${bindir} - install -m 0755 udp_client ${D}${bindir} -} |