From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mx0a-002e3701.pphosted.com (mx0a-002e3701.pphosted.com [148.163.147.86]) by mx.groups.io with SMTP id smtpd.web11.8809.1609224219488246849 for ; Mon, 28 Dec 2020 22:43:39 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@hpe.com header.s=pps0720 header.b=PlktVwEd; spf=pass (domain: hpe.com, ip: 148.163.147.86, mailfrom: prvs=0632325a7c=abner.chang@hpe.com) Received: from pps.filterd (m0134420.ppops.net [127.0.0.1]) by mx0b-002e3701.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 0BT6UOMV023862; Tue, 29 Dec 2020 06:43:39 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=hpe.com; h=from : to : cc : subject : date : message-id : in-reply-to : references; s=pps0720; bh=Luqv3YrExYvnjLa0R4GbIiqJ9LhWgaCar35U37rUYIk=; b=PlktVwEdoq5S8VZJJy1a2rne8923GggVXs/FZFKXAsyBVWoLBsrNGyr8KJfsCnSaW+sz UzzfOR1yX5OD8V0mzdjRDlBDQL8Qc33Tt0x9xoA+J5+LW6htqebFe44Z5KKJ3LTRvC8f 6ws8fdPJFOYtW1m4uJEH6o/x2NjmAzi+16dr3jH9pXgcKkmC8yYm/oTTuzzUBGqCO32u sya2S7GhymBgOQpSZ7qtmRLpB3fSB+dBuq2ZgCRRuYv53JTcMmFs5O3oF7U3Ij8dk8Pn mIqfn9JFm3Uhlx8cMR9Qq4ikUkWB8zoWPMshR51KdaiFmwHhX2sTi77w6UN/ZnMwdShB Qw== Received: from g2t2352.austin.hpe.com (g2t2352.austin.hpe.com [15.233.44.25]) by mx0b-002e3701.pphosted.com with ESMTP id 35ntj5nu13-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Tue, 29 Dec 2020 06:43:39 +0000 Received: from g2t2360.austin.hpecorp.net (g2t2360.austin.hpecorp.net [16.196.225.135]) by g2t2352.austin.hpe.com (Postfix) with ESMTP id 874E162; Tue, 29 Dec 2020 06:43:38 +0000 (UTC) Received: from abner-virtual-machine.asiapacific.hpqcorp.net (abner-virtual-machine.asiapacific.hpqcorp.net [15.119.210.153]) by g2t2360.austin.hpecorp.net (Postfix) with ESMTP id 4A56B36; Tue, 29 Dec 2020 06:43:37 +0000 (UTC) From: "Abner Chang" To: devel@edk2.groups.io Cc: Sean Brogan , Bret Barkelew , Nickle Wang , Peter O'Hanley Subject: [PATCH v12 6/6] .pytool: Add required submodule for JsonLib Date: Tue, 29 Dec 2020 13:55:57 +0800 Message-Id: <20201229055557.4679-7-abner.chang@hpe.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20201229055557.4679-1-abner.chang@hpe.com> References: <20201229055557.4679-1-abner.chang@hpe.com> X-HPE-SCL: -1 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.343,18.0.737 definitions=2020-12-29_05:2020-12-28,2020-12-29 signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 bulkscore=0 mlxlogscore=709 mlxscore=0 adultscore=0 malwarescore=0 priorityscore=1501 suspectscore=0 clxscore=1015 spamscore=0 phishscore=0 lowpriorityscore=0 impostorscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2009150000 definitions=main-2012290038 Open source project jansson is leveraged by edk2 JsonLib. Add jansson to the required submodule in CiSettings.py. Signed-off-by: Abner Chang Cc: Sean Brogan Cc: Bret Barkelew Cc: Nickle Wang Cc: Peter O'Hanley --- .pytool/CISettings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.pytool/CISettings.py b/.pytool/CISettings.py index b337d046ae..416de023cc 100644 --- a/.pytool/CISettings.py +++ b/.pytool/CISettings.py @@ -158,6 +158,8 @@ class Settings(CiBuildSettingsManager, UpdateSettingsManager, SetupSettingsManag "MdeModulePkg/Library/BrotliCustomDecompressLib/brotli", False)) rs.append(RequiredSubmodule( "BaseTools/Source/C/BrotliCompress/brotli", False)) + rs.append(RequiredSubmodule( + "RedfishPkg/Library/JsonLib/jansson", False)) return rs def GetName(self): -- 2.17.1