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.web11.15504.1683244106448476308 for ; Thu, 04 May 2023 16:48:26 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=LjkF2QB+; spf=pass (domain: intel.com, ip: 192.55.52.136, mailfrom: chasel.chiu@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1683244106; x=1714780106; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=KDaiAclEy4GpP4zn2tzpPpqG3NjO7sv+2nOswT1muQQ=; b=LjkF2QB+DCbF9SlXbq0+MVGZaVLOkUy0TaD8hBrnxm0lfS3gNf2Z+1PI TR5ZmDlqbux7ahE9+bQHlRIjqgyKJIGGJhueUEBHXKaqUeeWyvmZlOtyk BbM0Z6wIhwf6gU8MYF7QcRFlmI4Q9VreDCo9LlMwnwbpOE9oEQCG51dag kxfvH/2Bmw3Xp9AxD6xaplaHDWLQK9paEubgxd+AAPNECKABpUVZ4gPRY lszbJAJF/VoDWpYImi/Ltxofj/GfJSYSBgJUZN2KgA3cQ6MfbgqJACkx/ TzDCIYP0B8N2dew6Xs9dyzZtlrjh120O5J/eR/Yjj/3wWi8GHKsOY+Bvv w==; X-IronPort-AV: E=McAfee;i="6600,9927,10700"; a="328706437" X-IronPort-AV: E=Sophos;i="5.99,250,1677571200"; d="scan'208";a="328706437" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 May 2023 16:48:26 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10700"; a="786796222" X-IronPort-AV: E=Sophos;i="5.99,250,1677571200"; d="scan'208";a="786796222" Received: from cchiu4-mobl.gar.corp.intel.com ([10.212.172.113]) by fmsmga003-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 May 2023 16:48:25 -0700 From: "Chiu, Chasel" To: devel@edk2.groups.io Cc: Benny Lin , Leif Lindholm , Michael D Kinney , Andrew Fish Subject: [PATCH v7 1/3] Tianocore: Support FDT library. Date: Thu, 4 May 2023 16:48:10 -0700 Message-Id: <20230504234812.2037-2-chasel.chiu@intel.com> X-Mailer: git-send-email 2.35.0.windows.1 In-Reply-To: <20230504234812.2037-1-chasel.chiu@intel.com> References: <20230504234812.2037-1-chasel.chiu@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..6211c59724 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"]=0D + path =3D MdePkg/Library/BaseFdtLib/libfdt=0D + url =3D https://github.com/devicetree-org/pylibfdt.git=0D 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.35.0.windows.1