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.web10.11648.1608821616403002910 for ; Thu, 24 Dec 2020 06:53:36 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@hpe.com header.s=pps0720 header.b=L4S4tvga; spf=pass (domain: hpe.com, ip: 148.163.147.86, mailfrom: prvs=06276e9735=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 0BOEi6Pm032165; Thu, 24 Dec 2020 14:53:36 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=L4S4tvgalmDPYR5nW97a54GZVv15WD6l/OmTltqLRzjYLRafL+rlsJh9xxVglUseOcj4 ZKnNWsNnkXAi98FQ0rQaxfF1MVXLltpVx6IOMAOOekhexs135wSipGAsNhRffJf7cngd ToaUf5W3iGjxfWXhMXZSn2YxdxthE6zt3ZQFfeaA+KHebKnCyQakfF7FLC97xyy9+6gY Da2zKwncQyN5eeyJu+xOnG6u+cyY9s1iir8YAHyOmfqWPJbiySWtlY+qGoKKOYfMbS3g j8unWxnDop0MFAHxKQqP5h1ggxDpyj7bTOgbd5RzetNdnCYihcnbnz9yNaV1sWUqKfXZ /A== Received: from g2t2352.austin.hpe.com (g2t2352.austin.hpe.com [15.233.44.25]) by mx0b-002e3701.pphosted.com with ESMTP id 35k0d6bkxn-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 24 Dec 2020 14:53:36 +0000 Received: from g2t2360.austin.hpecorp.net (g2t2360.austin.hpecorp.net [16.196.225.135]) by g2t2352.austin.hpe.com (Postfix) with ESMTP id 7430B62; Thu, 24 Dec 2020 14:53:35 +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 392A440; Thu, 24 Dec 2020 14:53:34 +0000 (UTC) From: "Abner Chang" To: devel@edk2.groups.io Cc: Sean Brogan , Bret Barkelew , Nickle Wang , Peter O'Hanley Subject: [PATCH v11 6/6] .pytool: Add required submodule for JsonLib Date: Thu, 24 Dec 2020 22:06:00 +0800 Message-Id: <20201224140600.7673-7-abner.chang@hpe.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20201224140600.7673-1-abner.chang@hpe.com> References: <20201224140600.7673-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-24_09:2020-12-24,2020-12-24 signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 malwarescore=0 bulkscore=0 clxscore=1015 impostorscore=0 lowpriorityscore=0 priorityscore=1501 suspectscore=0 adultscore=0 spamscore=0 phishscore=0 mlxscore=0 mlxlogscore=718 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2009150000 definitions=main-2012240093 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