From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mx.groups.io with SMTP id smtpd.web11.43047.1683179850939918946 for ; Wed, 03 May 2023 22:57:32 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=dIpkKiwi; spf=pass (domain: intel.com, ip: 192.55.52.115, 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=1683179851; x=1714715851; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=dlbAz7RleWx2gg3x7DH8qpd6lkDuO94FtOx5PNqZ0Eg=; b=dIpkKiwiKT9EH3GW5JiQG9WEhJDjDKg1uiV4a2iixuTso35Gbv/cdbMt Fd4sRjuSCykyRqSTZPza2NYQl5e8BgyHtYzwjlmJqsYtWtzNnx+zIZOtT XUd9OT6MbSJSB0hXV3gWU9okutsyxICX0U/4F/x9quFeKitkcCrawp/OS LvChkum8G5RJ8XUPY5Wx9gnRcZXrBjQFQ5zr1qMb1pZGM3ecSGRXbcQ4S m7VKvP3rIUg4qVrMT8uQQ2rFJLR1PBSSLVk5wJ2ICGfJ94mP2tfdUY2NZ rCqje93aagHH67YuhaqxnJbp8uwMk+uN4dg094iGXgIZ4Ad7ehReWbcgr Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10699"; a="348884514" X-IronPort-AV: E=Sophos;i="5.99,249,1677571200"; d="scan'208";a="348884514" Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 03 May 2023 22:57:31 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10699"; a="943193093" X-IronPort-AV: E=Sophos;i="5.99,249,1677571200"; d="scan'208";a="943193093" Received: from bennyli1-mobl2.gar.corp.intel.com ([10.252.184.20]) by fmsmga006-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 03 May 2023 22:57:30 -0700 From: "Benny Lin" To: devel@edk2.groups.io Cc: Benny Lin , Leif Lindholm , Michael D Kinney , Andrew Fish Subject: [PATCH v6 1/3] Tianocore: Support FDT library. Date: Thu, 4 May 2023 13:57:18 +0800 Message-Id: <20230504055720.397-2-benny.lin@intel.com> X-Mailer: git-send-email 2.39.1.windows.1 In-Reply-To: <20230504055720.397-1-benny.lin@intel.com> References: <20230504055720.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 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