mirror of
https://git.yoctoproject.org/poky
synced 2026-03-19 13:49:41 +01:00
Drop 0002-use-lnr-wrapper-instead-of-looking-for-relative-opti.patch a
variant on which was introduced in 2c10473109 ("Upgrade to systemd
211+") in 2014. The oldest supported build machine is now CentOS 7 which
has --relative support in ln, so there no longer appears to be any need
for this change.
Rebase/refresh musl patches:
- replace missing.h with specific missing_... header
- fix additional WRITE_STRING_FILE_DISABLE_BUFFER
- fix more places that need netinet/if_ether.h
(From OE-Core rev: 44a4ac2294da0f53cbbfabc7ece836fe97f4d3f7)
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
From 082d2eb2a65525890a913723764e67a36ee75384 Mon Sep 17 00:00:00 2001
|
|
From: Scott Murray <scott.murray@konsulko.com>
|
|
Date: Fri, 13 Sep 2019 19:26:27 -0400
|
|
Subject: [PATCH] Include signal.h
|
|
|
|
Fixes several signal set related errors:
|
|
src/basic/copy.c:92:19: error: implicit declaration of function 'sigemptyset' [-Werror=implicit-function-declaration]
|
|
src/basic/copy.c:93:19: error: implicit declaration of function 'sigaddset' [-Werror=implicit-function-declaration]
|
|
src/basic/copy.c:93:34: error: 'SIGINT' undeclared (first use in this function)
|
|
src/basic/copy.c:95:13: error: implicit declaration of function 'sigtimedwait' [-Werror=implicit-function-declaration]
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
|
|
|
|
---
|
|
src/basic/copy.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/basic/copy.c b/src/basic/copy.c
|
|
index 9028868f696d..5168586fa522 100644
|
|
--- a/src/basic/copy.c
|
|
+++ b/src/basic/copy.c
|
|
@@ -8,6 +8,7 @@
|
|
#include <sys/sendfile.h>
|
|
#include <sys/xattr.h>
|
|
#include <unistd.h>
|
|
+#include <signal.h>
|
|
|
|
#include "alloc-util.h"
|
|
#include "btrfs-util.h"
|