mirror of
https://git.yoctoproject.org/poky
synced 2026-02-16 05:33:03 +01: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: 6c0329389ffd82552c9302d70c8b2a1dfc94ce00) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
48 lines
1.5 KiB
Diff
48 lines
1.5 KiB
Diff
Upstream-Status: Pending
|
|
|
|
Index: avahi-0.7/initscript/debian/avahi-daemon.in
|
|
===================================================================
|
|
--- avahi-0.7.orig/initscript/debian/avahi-daemon.in
|
|
+++ avahi-0.7/initscript/debian/avahi-daemon.in
|
|
@@ -1,5 +1,17 @@
|
|
#!/bin/sh
|
|
-
|
|
+### BEGIN INIT INFO
|
|
+# Provides: avahi
|
|
+# Required-Start: $remote_fs dbus
|
|
+# Required-Stop: $remote_fs dbus
|
|
+# Should-Start: $syslog
|
|
+# Should-Stop: $syslog
|
|
+# Default-Start: 2 3 4 5
|
|
+# Default-Stop: 0 1 6
|
|
+# Short-Description: Avahi mDNS/DNS-SD Daemon
|
|
+# Description: Zeroconf daemon for configuring your network
|
|
+# automatically
|
|
+### END INIT INFO
|
|
+#
|
|
# This file is part of avahi.
|
|
#
|
|
# avahi is free software; you can redistribute it and/or modify it
|
|
Index: avahi-0.7/initscript/debian/avahi-dnsconfd.in
|
|
===================================================================
|
|
--- avahi-0.7.orig/initscript/debian/avahi-dnsconfd.in
|
|
+++ avahi-0.7/initscript/debian/avahi-dnsconfd.in
|
|
@@ -1,4 +1,17 @@
|
|
#!/bin/sh
|
|
+### BEGIN INIT INFO
|
|
+# Provides: avahi-dnsconfd
|
|
+# Required-Start: $remote_fs avahi
|
|
+# Required-Stop: $remote_fs avahi
|
|
+# Should-Start: $syslog
|
|
+# Should-Stop: $syslog
|
|
+# Default-Start: 2 3 4 5
|
|
+# Default-Stop: 0 1 6
|
|
+# Short-Description: Avahi mDNS/DNS-SD DNS configuration
|
|
+# Description: Zeroconf daemon for configuring your network
|
|
+# automatically
|
|
+### END INIT INFO
|
|
+#
|
|
|
|
# This file is part of avahi.
|
|
#
|