From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 511D01860 for ; Sat, 30 Mar 2024 02:25:42 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711765543; cv=none; b=V9cHxpaUtMnzQFUit1uAoBAqSAUIwjTsbWQXJ3iMdvWK86Uj4vU0dqfTTc5cO79qPno8vwhUsE7M70GGLtZ4u4F4diVFnQYLBRWCNLhxi4cDuMMzb/Q8l1UnjGJ9CYBb1hox23+0svpP26yr9dyi2Id9lcLB1O11Y0TK3AWB4A8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711765543; c=relaxed/simple; bh=ulLIVFOXplje0zlV2ZNc5whNMzMbugwun1lAu8pijIo=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=hHXWumzrIGrhhU6znPE8nzEoVz6qTWUyL9i5OqZsNNAh8KazN4f4HJpCv1ktZWhy7dZ+AqVSzWxYJuv0mzkEfdEhQfkKP3YsqLKpuTW3WGlYk13KPEASgU3SiuQKrXYNwLi2s8SrQVl8V2lhpAWcSOuaQ5aEfNG+hE/jRd2w8RM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org; spf=none smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=nEXlgZqz; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="nEXlgZqz" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Sender:Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-ID:Date:Subject:Cc:To:From: Reply-To:Content-Type:Content-ID:Content-Description; bh=7COpi3qipgpCxDRpFVJCj0dxVCCvlZelgsGoy9bVNlc=; b=nEXlgZqzbOSjpWt+6leRaidS2l 7MLngQgo0zYS7Fj8hqmie6mzG4O1jqfsZ0PRX7quHxeGkrF57dSP1Sxrh9BsYnWCglQMSgHs6+I1Z PSKsJhhQOCUlNFlLH2dJ2MP5VEOWlz8uuxEICrMLrVdNHFiyVxyGSEBQF+WsCjldQWL6JyCvZVPz1 fUltnR02W+LBGuNmFRFn3WCQ2w15RyOrQw+k+c4IwN5KgT9h0PxEsbrdcEHUcCGye0+iCN9spKZos KlHq8cP/5eUYXT4y8YHcWP8Cibt91lEuxAm1/YX7uDd0yaehGlWSsocrJwTqcvB9d+am8eto85jqU oD9Z0oQQ==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.97.1 #2 (Red Hat Linux)) id 1rqOPd-00000002ZL5-35CY; Sat, 30 Mar 2024 02:25:41 +0000 From: Luis Chamberlain To: kdevops@lists.linux.dev Cc: Luis Chamberlain Subject: [PATCH 02/18] Makefile.min_deps: add netcat as a min binary dependency Date: Fri, 29 Mar 2024 19:25:24 -0700 Message-ID: <20240330022540.612487-3-mcgrof@kernel.org> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240330022540.612487-1-mcgrof@kernel.org> References: <20240330022540.612487-1-mcgrof@kernel.org> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: Luis Chamberlain we use nc to check if your firewall allows git access on the script ./scripts/test_git_firewall.sh for MIRROR_GIT_WORKS if you enable ENABLE_LOCAL_LINUX_MIRROR. Signed-off-by: Luis Chamberlain --- Makefile.min_deps | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.min_deps b/Makefile.min_deps index 93d4af6b91e6..9d8f205799c4 100644 --- a/Makefile.min_deps +++ b/Makefile.min_deps @@ -8,6 +8,7 @@ BINARY_DEPS := BINARY_DEPS += sudo BINARY_DEPS += make +BINARY_DEPS += nc BINARY_DEPS += ansible-playbook BINARY_DEPS_VCHECKS := $(subst $(TOPDIR)/,,$(wildcard $(TOPDIR)/scripts/version_check/*)) -- 2.43.0