From patchwork Tue Jun 16 17:48:35 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthias Fischer X-Patchwork-Id: 3207 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 49mbKb2VnWz3yHq for ; Tue, 16 Jun 2020 17:48:51 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail02.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 49mbKY15yfzJJ; Tue, 16 Jun 2020 17:48:49 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 49mbKX1hR4z2xfF; Tue, 16 Jun 2020 17:48:48 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 49mbKV1BGpz2xGF for ; Tue, 16 Jun 2020 17:48:46 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (Client did not present a certificate) by mail01.ipfire.org (Postfix) with ESMTPSA id 49mbKR54zbzJJ for ; Tue, 16 Jun 2020 17:48:43 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1592329723; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=t83S+KxhjoBBUn42T6ZD5lkyNZLoZKHOqVtIh3d0WQA=; b=vNnFpBbInw17atuiu4EbldaCr5j6yb0tMOfVxsilPuo4q8+yhgI7Gja2Gvf0eBr1/LyCuR S5D8W4oCMuy0HrBA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1592329723; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=t83S+KxhjoBBUn42T6ZD5lkyNZLoZKHOqVtIh3d0WQA=; b=EdpzXLWtJlFX/chUmKdk49TMmrPjJK0m9amijvMJ9qIE5D7XZAgIf4NODBfxmUzHab0KTc 6bxAX+psCndxNupl9VxGDV15owjrkYOzaekNLszmW1P0/pFdqkcfMUgc9/zmbosaRP6R61 xhzULM+aOk50BkDLrHjW/sAAmNuIEQuw6GWYB3CXH4vJuSFOm8QrJfO2TW127lFY1sxtxu cVLGvI7YpKdeqlwr8xnQQWMND5DGx8b3mb2p3Lm/5lBxXk8Ifq2kJrCaPESrWFZI6qnaS4 UfPc4JXhnEGWUTOgIL1ZGrhoDnKywLubrAtbm/ZdHptqY4ZMhsTRAGlZv1H1qQ== From: Matthias Fischer To: development@lists.ipfire.org Subject: [PATCH] dhcpcd: Update to 9.1.2 Date: Tue, 16 Jun 2020 19:48:35 +0200 Message-Id: <20200616174835.1705-1-matthias.fischer@ipfire.org> Authentication-Results: mail01.ipfire.org; auth=pass smtp.mailfrom=matthias.fischer@ipfire.org X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" For details see: https://roy.marples.name/blog/dhcpcd-9-1-2-released.html "Fix installing dhcpcd-definitions.conf rather than embedding it NetBSD: free ARP state once IPv4LL address announced Linux: fix compile for older distros udev: disable plugin for non Linux OS's BSD: Mark RA dervied addresses as AUTOCONF on NetBSD-current BSD: Only mark static routes from dhcpcd.conf as static DHCP6: Ensure requested addresses are requested DHCP6: Fix prefix length calculation when no prefix specified privsep: Implement a resource limited sandbox [1] privsep: Remove inet and dns pledges from master process privsep: call getifaddrs when the BSD lacks SIOCGIFALIAS privsep: free getifaddrs the right way if from privsep or not [1] You will see a control proxy process now. This is for the resource limited sandbox so that we can isolate requests over the control socket. For NetBSD, FreeBSD and derivatives such as DragonFlyBSD this is a massive win as these OS now enjoy a similar level of protection as Capsicum or Pledge, but without the syscall filtering." Signed-off-by: Matthias Fischer --- lfs/dhcpcd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/dhcpcd b/lfs/dhcpcd index bc55e9705..c5a2c1a25 100644 --- a/lfs/dhcpcd +++ b/lfs/dhcpcd @@ -24,7 +24,7 @@ include Config -VER = 9.0.2 +VER = 9.1.2 THISAPP = dhcpcd-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -40,7 +40,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = f62118a576b01f5d0adf0c5ce617fbe7 +$(DL_FILE)_MD5 = 96fc03f0b57e85a2dca2854bf2ff762d install : $(TARGET)