added my Recipes
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
From fa57e161fc953264a75d50a787cb83983e60acc7 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Wed, 30 Aug 2017 18:30:02 -0700
|
||||
Subject: [PATCH] tftp: Include missing fcntl.h
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
Upstream-Status: Pending
|
||||
|
||||
tftp/main.c | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/tftp/main.c b/tftp/main.c
|
||||
index 8c54843..5c9b698 100644
|
||||
--- a/tftp/main.c
|
||||
+++ b/tftp/main.c
|
||||
@@ -63,6 +63,7 @@ char main_rcsid[] =
|
||||
#include <ctype.h>
|
||||
#include <netdb.h>
|
||||
#include <unistd.h>
|
||||
+#include <fcntl.h>
|
||||
|
||||
#include "tftpsubs.h" /* for mysignal() */
|
||||
|
||||
--
|
||||
2.14.1
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
service tftp
|
||||
{
|
||||
disable = no
|
||||
socket_type = dgram
|
||||
port = 69
|
||||
protocol = udp
|
||||
wait = yes
|
||||
user = nobody
|
||||
server = /usr/sbin/in.tftpd
|
||||
server_args = /tftpboot
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
SUMMARY = "tftp - Trivial file transfer protocol client"
|
||||
SECTION = "net"
|
||||
LICENSE = "BSD-4-Clause"
|
||||
DEPENDS = "tcp-wrappers"
|
||||
|
||||
LIC_FILES_CHKSUM = "file://tftp/tftp.c;beginline=2;endline=3;md5=84d2cfe1e60863a7d82648734ba4d30c"
|
||||
|
||||
SRC_URI = "${DEBIAN_MIRROR}/main/n/${BPN}/${BPN}_${PV}.orig.tar.gz;name=archive \
|
||||
${DEBIAN_MIRROR}/main/n/${BPN}/${BPN}_${PV}-18.diff.gz;name=patch18 \
|
||||
file://tftp.conf \
|
||||
file://0001-tftp-Include-missing-fcntl.h.patch \
|
||||
"
|
||||
|
||||
SRC_URI[archive.md5sum] = "b7262c798e2ff50e29c2ff50dfd8d6a8"
|
||||
SRC_URI[archive.sha256sum] = "3a43c0010d4e61f412563fd83769d4667d8b8e82903526d21cb9205fe55ad14d"
|
||||
SRC_URI[patch18.md5sum] = "cb29e7a33dd85105ba6e6ec4f971e42c"
|
||||
SRC_URI[patch18.sha256sum] = "092437d27b4fa88c044ef6290372fee5ce06d223607f0e22a6e527065c8930e7"
|
||||
|
||||
inherit autotools-brokensep update-alternatives
|
||||
|
||||
do_configure () {
|
||||
./configure --prefix=${prefix}
|
||||
echo "CFLAGS=${CFLAGS}" > MCONFIG
|
||||
}
|
||||
|
||||
do_compile () {
|
||||
oe_runmake 'CC=${CC}' 'LD=${LD}' 'LDFLAGS=${LDFLAGS}' 'CFLAGS=${CFLAGS}'
|
||||
}
|
||||
|
||||
do_install () {
|
||||
install -d ${D}${bindir}
|
||||
install -d ${D}${sbindir}
|
||||
install -d ${D}${mandir}/man1
|
||||
install -d ${D}${mandir}/man8
|
||||
install -d ${D}${sysconfdir}/xinetd.d
|
||||
|
||||
sed -i 's/install -s/install/' tftp/Makefile
|
||||
sed -i 's/install -s/install/' tftpd/Makefile
|
||||
|
||||
oe_runmake 'INSTALLROOT=${D}' 'BINMODE=0755' \
|
||||
'DAEMONMODE=0755' 'MANMODE=0644' \
|
||||
'BINDIR=${bindir}' 'SBINDIR=${sbindir}' \
|
||||
'MANDIR=${mandir}' install
|
||||
|
||||
install ${WORKDIR}/tftp.conf ${D}/${sysconfdir}/xinetd.d/tftp
|
||||
}
|
||||
|
||||
PACKAGES = "${PN}-client ${PN}-server ${PN}-doc ${BPN}-dbg"
|
||||
FILES:${PN}-client = "${bindir}/*"
|
||||
FILES:${PN}-server = "${sbindir}/* ${sysconfdir}/xinetd.d/*"
|
||||
FILES:${PN}-doc = "${mandir}"
|
||||
FILES:${PN}-dbg = "${prefix}/src/debug \
|
||||
${bindir}/.debug ${sbindir}/.debug"
|
||||
|
||||
RDEPENDS:${PN}-server = "tcp-wrappers xinetd"
|
||||
|
||||
ALTERNATIVE_PRIORITY = "100"
|
||||
ALTERNATIVE:${PN}-client = "tftp"
|
||||
ALTERNATIVE_LINK_NAME[tftp] = "${bindir}/tftp"
|
||||
Reference in New Issue
Block a user