From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mx.groups.io with SMTP id smtpd.web10.52882.1682346294099117054 for ; Mon, 24 Apr 2023 07:24:57 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=Q7sPWlaP; spf=pass (domain: intel.com, ip: 192.55.52.120, mailfrom: benny.lin@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1682346297; x=1713882297; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=slLb/WdDQiv0cliWt5IuRh6MMMJAw2kIBvLBopPBqU8=; b=Q7sPWlaPhaOW9gLmTe7xrG09yEZlMr8GSmahwfpiLMQ9lP3ZgeJ7cOt0 Kx8QaQi/pdvLYlfXlIlEuuOs2zqOIyP4Li2HA8dqd+EaU+UJv7ICE3FKP sopB47ZSiq9+xbJBX81FlCoTS0Bkp3+2tWbttMGue2hIvnOv6s0FPEGAJ YmZoGDqkg1/FNHnJ+LCGqHBKLUkqQb24F6+dgP5zGg78aLT+ZpFFmOqj1 zkJXXCcyLeIpK4RGKhP9EQc/81Wt8tyzQZEYF97LgSTqubP2dxchzUmRx OSI/Mp5/GtNEjvR5L5AirIVe568AuJUKyxhiTNMqtoFxXsPiHAiEGXH8j g==; X-IronPort-AV: E=McAfee;i="6600,9927,10690"; a="345218057" X-IronPort-AV: E=Sophos;i="5.99,222,1677571200"; d="scan'208";a="345218057" Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Apr 2023 07:24:42 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10690"; a="939348562" X-IronPort-AV: E=Sophos;i="5.99,222,1677571200"; d="scan'208";a="939348562" Received: from bennyli1-mobl2.gar.corp.intel.com ([10.252.191.74]) by fmsmga006-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Apr 2023 07:24:41 -0700 From: "Benny Lin" To: devel@edk2.groups.io Cc: Benny Lin , Michael D Kinney , Sean Brogan , Michael Kubacki , Liming Gao Subject: [PATCH v4 3/3] .pytool: Support FDT library. Date: Mon, 24 Apr 2023 22:24:27 +0800 Message-Id: <20230424142427.397-4-benny.lin@intel.com> X-Mailer: git-send-email 2.39.1.windows.1 In-Reply-To: <20230424142427.397-1-benny.lin@intel.com> References: <20230424142427.397-1-benny.lin@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Benny Lin REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3D4392 Add FDT support in EDK2 by submodule 3rd party libfdt (https://github.com/devicetree-org/pylibfdt/tree/main/libfdt) Add RequiredSubmodule object for CI setting. Reviewed-by: Michael D Kinney Cc: Sean Brogan Cc: Michael Kubacki Cc: Michael D Kinney Cc: Liming Gao Signed-off-by: Benny Lin --- .pytool/CISettings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.pytool/CISettings.py b/.pytool/CISettings.py index e3f44add58..2fb99f2a17 100644 --- a/.pytool/CISettings.py +++ b/.pytool/CISettings.py @@ -195,6 +195,8 @@ class Settings(CiBuildSettingsManager, UpdateSettingsMa= nager, SetupSettingsManag "RedfishPkg/Library/JsonLib/jansson", False))=0D rs.append(RequiredSubmodule(=0D "UnitTestFrameworkPkg/Library/SubhookLib/subhook", False))=0D + rs.append(RequiredSubmodule(=0D + "MdePkg/Library/BaseFdtLib/libfdt", False))=0D return rs=0D =0D def GetName(self):=0D --=20 2.39.1.windows.1