====== 使用 RTL8125 网卡启动 UEFI 的 iPXE ====== {{tag>pxe rtl8125}} 手头有一张不支持 UEFI PXE 启动的 RTL8125,研究了一圈发现板载 ROM 并没有 UEFI 启动的功能…… 找个 U 盘,然后开个 GPT 分区表,创建 ESP 分区,然后: https://github.com/pbatard/UEFI-Shell/releases 下载 iso 解压,放到: EFI/Boot/bootx64.efi https://www.realtek.com/en/component/zoo/category/network-interface-controllers-10-100-1000m-gigabit-ethernet-pci-express-software 下载 UEFI UNDI Driver ,放到 x64/RtkUndiDxe.efi ipxe.efi,放到 x64/ipxe.efi 然后创建 EFI/Boot/startup.nsh ,写: fs0: cd x64 load RtkUndiDxe.efi ipxe.efi 完事。