0

I'm trying to set up a UDK2018 environment. Step 3 of the instructions refers to a text file in the OpenSSl with instructions below, but then says to download a zip and extract it. None of the commands in the instructions seem to work, because the directory isn't a git depository. I'm not very experienced at this, just trying to develop a UEFI script for a test. Any help on how to set up the environment would be great. Here are the instructions from the text file I referred to above:

"HOW to Install OpenSSL for UEFI Building

OpenSSL repository was added as one submodule of EDKII project.

The user can use the following commands to clone both main EDKII repo and openssl submodule: 1) Add the "--recursive" flag to the git clone command: $ git clone --recursive https://github.com/tianocore/edk2 or 2) Manually initialize and update the submodules after the clone operation on main project: $ git clone https://github.com/tianocore/edk2 $ git submodule update --init --recursive

And use the following combined commands to pull the remote submodule updates (e.g. Updating the new supported OpenSSL release tag): $ git pull --recurse-submodules && \ git submodule update --recursive --remote"

Thank you, Simon

4

1 回答 1

1

您还可以通过克隆上述 github 存储库并签出UDK2018分支来访问 UDK 版本。这将为您提供子模块元数据,并使上述说明生效。

注意:此分支包含原始 UDK2018 版本之上的反向移植修复。可以获取原始发布版本作为vUDK2018标签。 更多信息。

于 2019-06-18T10:26:59.880 回答