From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 22 Jun 2026 10:12:38 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1wbZlm-008aWf-2r for lore@lore.pengutronix.de; Mon, 22 Jun 2026 10:12:38 +0200 Received: from [127.0.0.1] (helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1wbZlm-0007ro-NI; Mon, 22 Jun 2026 10:12:38 +0200 Received: from mail.thorsis.com ([2003:a:e28:26e4::10]) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1wbZlf-0007gU-LB for ptxdist@pengutronix.de; Mon, 22 Jun 2026 10:12:31 +0200 Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 4585A149075A for ; Mon, 22 Jun 2026 10:12:44 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=thorsis.com; s=dkim; t=1782115964; h=from:subject:date:message-id:to:mime-version: content-transfer-encoding:in-reply-to:references; bh=DJsQOt9DB9tVV1+VRrb0nA9WMeBdFA7u8qPqt7KDPGs=; b=Q4TtH/yBQFdcXwA1413Sx3ShhMPbRotZvl6kZ/B80ZXgIyrToMfL19s83r7SyQPuV5xouf UVt1w99J9FIebf0m+ny/meRH3Ly4+zi/EbkNMmFUYJ+Gn8ysJqnrh/3VgXgo2QUYmEh1Gf lnYiwVJhncNaQ+iZ26KCO1SoMfBLFohnIaLavoGJfsJHACMEZ1vBbBAtXR3M2vAv4KR4eG MoUQ4AKshgFJbb4A0fmiiRDujUho102dHLqLjkxZGf5dA1XKf86m30T5yWgrx9eehYvJAR TTQUVlNVpJdHoZ3VP9mBlKu9Q+r0yOwb3jNk7zdvqNXSXt0T2OEmFs5B6FO63g== To: ptxdist@pengutronix.de Date: Mon, 22 Jun 2026 10:12:30 +0200 Message-ID: <20260622081230.187757-3-ada@thorsis.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260622081230.187757-1-ada@thorsis.com> References: <20260622081230.187757-1-ada@thorsis.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Last-TLS-Session-Version: TLSv1.3 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on metis.whiteo.stw.pengutronix.de X-Spam-Level: X-Spam-Status: No, score=-3.2 required=4.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.2 Subject: [ptxdist] [PATCH 2/2] libnet: Add license information X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Alexander Dahl via ptxdist Reply-To: ptxdist@pengutronix.de Cc: Alexander Dahl Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Most of the code is BSD-2-Clause with two exceptions. The code of src/libnet_link_*.c is BSD-3-Clause, and the asn1 code (for snmp) has an additional section which exactly matches the MIT-CMU license. Signed-off-by: Alexander Dahl --- rules/libnet.make | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rules/libnet.make b/rules/libnet.make index 59f193b30..e75fb406a 100644 --- a/rules/libnet.make +++ b/rules/libnet.make @@ -22,6 +22,11 @@ LIBNET_SUFFIX := tar.gz LIBNET_URL := https://github.com/libnet/libnet/releases/download/v$(LIBNET_VERSION)/$(LIBNET).$(LIBNET_SUFFIX) LIBNET_SOURCE := $(SRCDIR)/$(LIBNET).$(LIBNET_SUFFIX) LIBNET_DIR := $(BUILDDIR)/$(LIBNET) +LIBNET_LICENSE := BSD-2-Clause AND BSD-3-Clause AND MIT-CMU +LIBNET_LICENSE_FILES := \ + file://LICENSE;md5=07f291bf6e78efa05cec668cf6a09acc \ + file://src/libnet_link_linux.c;startline=7;endline=32;md5=8100f4b58c857a134acd5628b181f3a4 \ + file://src/libnet_asn1.c;startline=14;endline=31;md5=0c3ffb558473335f995286c9b8572509 # ---------------------------------------------------------------------------- # Prepare -- 2.47.3