From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mx.groups.io with SMTP id smtpd.web10.47575.1681709754977930483 for ; Sun, 16 Apr 2023 22:35:56 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=g5D/hOHN; spf=pass (domain: intel.com, ip: 192.55.52.136, 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=1681709755; x=1713245755; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=FShQacMCPzO258fc89zXOF4F7bDHBreMUpNH73CSREk=; b=g5D/hOHNkJYYptpmEzZUAnHCC/CK5DpezCLqWiBUDXzPqoxTX4H5SwWu 2ed1uufPCF7K8/zBKXf0xzY58iTDcTlsmhkdtySCw/+kQCqQU5Dx67++M GKH2iCZyXbgOUtzwsCs8hP6CT6z6FczY/P7qEbwFXQfaSfD10xWfgtSmH fGWwNpTPCov8yCIH9UM4Pkrw/mEjOTuDE7pqXgJfseXCm4f+Yahf67AlW LBVdXB7nf4VAfS++utldZ6+mQIhn5o4ZSKcPiRCLKwWjLrQ1iIEH6vYeH frVJc/wIB9xIcZrrZSrFZX0olAsggh3ggDqfMzia0uwSBgJmg+FBaXeKT Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10682"; a="324431859" X-IronPort-AV: E=Sophos;i="5.99,203,1677571200"; d="scan'208";a="324431859" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Apr 2023 22:35:15 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10682"; a="864876362" X-IronPort-AV: E=Sophos;i="5.99,203,1677571200"; d="scan'208";a="864876362" Received: from bennyli1-mobl2.gar.corp.intel.com ([10.225.41.143]) by orsmga005-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Apr 2023 22:35:13 -0700 From: "Benny Lin" To: devel@edk2.groups.io Cc: Benny Lin , Andrew Fish , Leif Lindholm , Michael D Kinney Subject: [PATCH v3 1/3] Tianocore: Support FDT library. Date: Mon, 17 Apr 2023 13:35:03 +0800 Message-Id: <20230417053505.670-2-benny.lin@intel.com> X-Mailer: git-send-email 2.39.1.windows.1 In-Reply-To: <20230417053505.670-1-benny.lin@intel.com> References: <20230417053505.670-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. 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