Project

General

Profile

Actions

Feature #10374

closed

Add ARM32/64 network booting support to dhcpd

Added by Michael Boever about 4 years ago. Updated over 3 years ago.

Status:
Resolved
Priority:
Normal
Category:
DHCP (IPv4)
Target version:
Start date:
03/25/2020
Due date:
% Done:

100%

Estimated time:
Plus Target Version:
Release Notes:

Description

Similar to Bug #5046 which added EFI64 (arch = 00:09) support to DHCPd, but this is for ARM 32/64 architecture (arch = 00:0a / 00:0b). See iPXE's platform support documentation for reference. (https://ipxe.org/cfg/platform).

Here is the current dhcpd.conf section example:

        if option arch = 00:06 {
                filename "uefi32.efi";
        } else if option arch = 00:07 {
                filename "uefi64.efi";
        } else if option arch = 00:09 {
                filename "uefi64.efi";
        } else {
                filename "default.pxe";
        }

This is to add:

        } else if option arch = 00:0a {
                filename "arm32.efi";
        } else if option arch = 00:0b {
                filename "arm64.efi";

Actions

Also available in: Atom PDF