mirror of
https://git.yoctoproject.org/poky
synced 2026-05-22 08:27:55 +02:00
The patch tool will apply patches by default with "fuzz", which is where if the hunk context isn't present but what is there is close enough, it will force the patch in. Whilst this is useful when there's just whitespace changes, when applied to source it is possible for a patch applied with fuzz to produce broken code which still compiles (see #10450). This is obviously bad. We'd like to eventually have do_patch() rejecting any fuzz on these grounds. For that to be realistic the existing patches with fuzz need to be rebased and reviewed. (From OE-Core rev: 0902bef12c815f302f04fa28606ece4b014260d6) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
From 398fed3bb0350cb1229e54e7020ae0e044c206d1 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Ulrich=20=C3=96lmann?= <u.oelmann@pengutronix.de>
|
|
Date: Wed, 17 Feb 2016 08:33:45 +0100
|
|
Subject: bugfix: adjust statd service name
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Upstream uses 'rpc-statd.service' and Yocto introduced 'nfs-statd.service'
|
|
instead but forgot to update the mount.nfs helper 'start-statd' accordingly.
|
|
|
|
Upstream-Status: Inappropriate [other]
|
|
|
|
Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de>
|
|
---
|
|
utils/statd/start-statd | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
Index: nfs-utils-2.1.1/utils/statd/start-statd
|
|
===================================================================
|
|
--- nfs-utils-2.1.1.orig/utils/statd/start-statd
|
|
+++ nfs-utils-2.1.1/utils/statd/start-statd
|
|
@@ -28,7 +28,7 @@ fi
|
|
# First try systemd if it's installed.
|
|
if [ -d /run/systemd/system ]; then
|
|
# Quit only if the call worked.
|
|
- systemctl start rpc-statd.service && exit
|
|
+ systemctl start nfs-statd.service && exit
|
|
fi
|
|
|
|
cd /
|