All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [git commit] busybox: don't remove S01logging when CONFIG_SYSLOGD is disabled
@ 2018-01-10 22:03 Thomas Petazzoni
  2018-01-16 19:38 ` Peter Korsgaard
  2018-01-30 12:33 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2018-01-10 22:03 UTC (permalink / raw)
  To: buildroot

commit: https://git.buildroot.net/buildroot/commit/?id=84e835ea9261b3e844f1a18489dd89253e3eb839
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

The current busybox.mk explicitly removes S01logging if CONFIG_SYSLOGD
is disabled in the Busybox configuration. However:

 - This causes the removal of the S01logging script potentially
   installed by another package (currently syslog-ng, rsyslog and
   sysklogd can all install a S01logging script).

 - We generally don't try to clean-up stuff that we may have installed
   in a previous make invocation and that is no longer needed
   following a configuration change.

Fixes bug #10176

Reported-by: Karl Krach <mail@kkrach.de>
Fix-provided-by: Karl Krach <mail@kkrach.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/busybox/busybox.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/busybox/busybox.mk b/package/busybox/busybox.mk
index 8b720b3..d0bbd3f 100644
--- a/package/busybox/busybox.mk
+++ b/package/busybox/busybox.mk
@@ -221,7 +221,7 @@ define BUSYBOX_INSTALL_LOGGING_SCRIPT
 	if grep -q CONFIG_SYSLOGD=y $(@D)/.config; then \
 		$(INSTALL) -m 0755 -D package/busybox/S01logging \
 			$(TARGET_DIR)/etc/init.d/S01logging; \
-	else rm -f $(TARGET_DIR)/etc/init.d/S01logging; fi
+	fi
 endef
 
 ifeq ($(BR2_INIT_BUSYBOX),y)

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [git commit] busybox: don't remove S01logging when CONFIG_SYSLOGD is disabled
  2018-01-10 22:03 [Buildroot] [git commit] busybox: don't remove S01logging when CONFIG_SYSLOGD is disabled Thomas Petazzoni
@ 2018-01-16 19:38 ` Peter Korsgaard
  2018-01-30 12:33 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2018-01-16 19:38 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 > commit: https://git.buildroot.net/buildroot/commit/?id=84e835ea9261b3e844f1a18489dd89253e3eb839
 > branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

 > The current busybox.mk explicitly removes S01logging if CONFIG_SYSLOGD
 > is disabled in the Busybox configuration. However:

 >  - This causes the removal of the S01logging script potentially
 >    installed by another package (currently syslog-ng, rsyslog and
 >    sysklogd can all install a S01logging script).

 >  - We generally don't try to clean-up stuff that we may have installed
 >    in a previous make invocation and that is no longer needed
 >    following a configuration change.

 > Fixes bug #10176

 > Reported-by: Karl Krach <mail@kkrach.de>
 > Fix-provided-by: Karl Krach <mail@kkrach.de>
 > Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Committed to 2017.11.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [git commit] busybox: don't remove S01logging when CONFIG_SYSLOGD is disabled
  2018-01-10 22:03 [Buildroot] [git commit] busybox: don't remove S01logging when CONFIG_SYSLOGD is disabled Thomas Petazzoni
  2018-01-16 19:38 ` Peter Korsgaard
@ 2018-01-30 12:33 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2018-01-30 12:33 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 > commit: https://git.buildroot.net/buildroot/commit/?id=84e835ea9261b3e844f1a18489dd89253e3eb839
 > branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

 > The current busybox.mk explicitly removes S01logging if CONFIG_SYSLOGD
 > is disabled in the Busybox configuration. However:

 >  - This causes the removal of the S01logging script potentially
 >    installed by another package (currently syslog-ng, rsyslog and
 >    sysklogd can all install a S01logging script).

 >  - We generally don't try to clean-up stuff that we may have installed
 >    in a previous make invocation and that is no longer needed
 >    following a configuration change.

 > Fixes bug #10176

 > Reported-by: Karl Krach <mail@kkrach.de>
 > Fix-provided-by: Karl Krach <mail@kkrach.de>
 > Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Committed to 2017.02.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-01-30 12:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-10 22:03 [Buildroot] [git commit] busybox: don't remove S01logging when CONFIG_SYSLOGD is disabled Thomas Petazzoni
2018-01-16 19:38 ` Peter Korsgaard
2018-01-30 12:33 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.