-
Notifications
You must be signed in to change notification settings - Fork 36
Build add renesas
The Renesas USB driver supports the USB interface on the Server platform. NVIDIA cannot distribute this driver, so it is not included by default. These instructions outline how to download, unpack, and add the driver to the build.
The driver must be downloaded from Renesas. Renesas_USB3-201-202-FW-20131112.zip has been verified, but newer versions may work.
To download the driver, visit Renesas.com, create an account, then "request access". The request will be reviewed by Renesas and download access will be provided.
The following instructions assume a workspace has already been created using the build instructions.
cd /path/to/workspace
mkdir -p edk2-renesas/Silicon/Renesas
cd edk2-renesas/Silicon/Renesas
unzip /path/to/Renesas_USB3-201-202-FW-20131112.zip
cd -
Before building the following environment must be set. Add the following to
edk2-nvidia/Platform/NVIDIA/Server/build.sh
prior to the "Prepare and build"
steps:
STUART_BUILD_OPTIONS+=" --verbose"
STUART_BUILD_OPTIONS+=" --insert-packages-path edk2-renesas"
STUART_BUILD_OPTIONS+=" BLD_*_ENABLE_RENESAS_USB_FW=1"
export STUART_BUILD_OPTIONS
Once added, the Server platform can be built as normal.