Visible to Intel only — GUID: vfo1598478908054
Ixiasoft
1. About this Document
2. System Requirements
3. Hardware Installation
4. Installing the OPAE Software
5. Identify the Intel® MAX® 10 BMC Version
6. Intel XL710 Driver Installation and Firmware Update
7. Updating the Retimer Firmware
8. OPAE Tools
9. Sample Test: Native Loopback
10. Configuring Ethernet Interfaces
11. Testing Network Loopback Using Data Plane Development Kit (DPDK)
12. Graceful Shutdown
13. Single Event Upset (SEU)
14. Document Revision History for Intel Acceleration Stack User Guide: Intel® FPGA PAC N3000-N/2
A. Troubleshooting
B. fpgabist Sample Output
Visible to Intel only — GUID: vfo1598478908054
Ixiasoft
4.1.2.2.2. Build and Install kernel 4.19
- Copy the provided config_4.19_opae file to the kernel source directory and rename the file as .config:
$ cp ../config_4.19_opae .config
- Build the kernel source with real time patch. The makefile for the kernel source allows you to specify the number of cores/threads to use. The kernel source takes several minutes to build. Intel recommends to use the following command for the build which uses all the cores:
$ make -j $(nproc)
Tip: Substitute $(nproc) with 4 to use reduced server resources for the build. - Install the kernel modules and kernel:
$ sudo make modules_install
$ sudo make install
- Update your kernel boot order to make kernel 4.19 as the default kernel:
$ sudo grubby --set-default /boot/vmlinuz-4.19.106-rt45
To verify that the default kernel has been set correctly:$ sudo grubby --default-kernel
Sample output:/boot/vmlinuz-4.19.106-rt45
- Reboot the server and verify that the kernel 4.19-rt45 is running after reboot:
$ sudo reboot After server comes up: $ uname -mrs Linux 4.19.106-rt45 x86_64