From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mx.groups.io with SMTP id smtpd.web11.13719.1682666010229387527 for ; Fri, 28 Apr 2023 00:13:30 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=fZ3xHE4H; spf=pass (domain: intel.com, ip: 134.134.136.20, 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=1682666010; x=1714202010; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=dlbAz7RleWx2gg3x7DH8qpd6lkDuO94FtOx5PNqZ0Eg=; b=fZ3xHE4HdrewGMiwdSo8cBom6ZNZPe4tYU5FvMDGu6rVKmiA57SJrVFF Zb5f5OAehnhbcryxdAiEr36cWpnHPLUnc+cfXEIZ9rz390VOvcZL40yIK qnplWQ1MJqxWo+sd5iFHtXy3KtkTnf6ZSRnNYfxq6jJNPmldzRwth3xHt jP/OdrsRngFt3/YbVcqnLpFmE38yEICeSP61wBBVew4G4SaFYBktvlCe0 ftpwtA/5Xv36feFwA/PhyWncyp6u+hYyRzs/KkMyp3BCa4ZHJm2RmXvDo dNg5wxdlLI57fCHVIc9UkkeSPp4SA5ue/IhF49OeIYWCfwIRsKssK9iZE g==; X-IronPort-AV: E=McAfee;i="6600,9927,10693"; a="336720014" X-IronPort-AV: E=Sophos;i="5.99,233,1677571200"; d="scan'208";a="336720014" Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Apr 2023 00:13:29 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10693"; a="940999008" X-IronPort-AV: E=Sophos;i="5.99,233,1677571200"; d="scan'208";a="940999008" Received: from bennyli1-mobl2.gar.corp.intel.com ([10.252.187.210]) by fmsmga006-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Apr 2023 00:13:28 -0700 From: "Benny Lin" To: devel@edk2.groups.io Cc: Benny Lin , Leif Lindholm , Michael D Kinney , Andrew Fish Subject: [PATCH v5 1/3] Tianocore: Support FDT library. Date: Fri, 28 Apr 2023 15:13:09 +0800 Message-Id: <20230428071311.1669-2-benny.lin@intel.com> X-Mailer: git-send-email 2.39.1.windows.1 In-Reply-To: <20230428071311.1669-1-benny.lin@intel.com> References: <20230428071311.1669-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 submodule libfdt and update ReadMe for the licence. Reviewed-by: Leif Lindholm Reviewed-by: Michael D Kinney Cc: Andrew Fish Cc: Leif Lindholm Cc: Michael D Kinney Signed-off-by: Benny Lin --- .gitmodules | 3 +++ MdePkg/Library/BaseFdtLib/libfdt | 1 + ReadMe.rst | 1 + 3 files changed, 5 insertions(+) diff --git a/.gitmodules b/.gitmodules index fe8a43be93..b1888c3488 100644 --- a/.gitmodules +++ b/.gitmodules @@ -26,3 +26,6 @@ [submodule "UnitTestFrameworkPkg/Library/SubhookLib/subhook"] path =3D UnitTestFrameworkPkg/Library/SubhookLib/subhook url =3D https://github.com/Zeex/subhook.git +[submodule "MdePkg/Library/BaseFdtLib/libfdt"] + path =3D MdePkg/Library/BaseFdtLib/libfdt + url =3D https://github.com/devicetree-org/pylibfdt.git diff --git a/MdePkg/Library/BaseFdtLib/libfdt b/MdePkg/Library/BaseFdtLib/l= ibfdt new file mode 160000 index 0000000000..cfff805481 --- /dev/null +++ b/MdePkg/Library/BaseFdtLib/libfdt @@ -0,0 +1 @@ +Subproject commit cfff805481bdea27f900c32698171286542b8d3c diff --git a/ReadMe.rst b/ReadMe.rst index 91b9cf3c5e..d46c534229 100644 --- a/ReadMe.rst +++ b/ReadMe.rst @@ -96,6 +96,7 @@ that are covered by additional licenses. - `UnitTestFrameworkPkg/Library/GoogleTestLib/googletest `__=0D - `UnitTestFrameworkPkg/Library/SubhookLib/subhook `__=0D - `RedfishPkg/Library/JsonLib/jansson `__=0D +- `MdePkg/Library/BaseFdtLib/libfdt `__=0D =0D The EDK II Project is composed of packages. The maintainers for each packa= ge=0D are listed in `Maintainers.txt `__.=0D --=20 2.39.1.windows.1