https://bugs.koozali.org/show_bug.cgi?id=10821

Trevor Batley <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           See Also|                            |https://bugs.koozali.org/sh
                   |                            |ow_bug.cgi?id=11960

--- Comment #10 from Trevor Batley <[email protected]> ---
I originally added all the PXE stuff under thinclient, but I believe it should
be independent.

I'll use this bug for deployment of that new package (smeserver-pxe) and raise
a new bug(11960) for the thinclient changes needed to use this package.
The new package will have the UEFI changes included.

New package is just db config entries and /etc/dhcpd.conf fragments.
Will be regenerated with restart of dhcpd service.

pxe=configuration
  status=enabled
  default=pxelinux.0
  00:06=bootia32.EFI
  00:07=bootx64.EFI

optional parameters of
  dir=<sub-directory to use - eg. $dir/$default>
  nextserver=<IP or address of tftp server, if not self>

Additional architectures can be added eg.
config setprop pxe 00:09 syslinux.EFI

Creates in /etc/dhcpd.conf:

option architecture-type code 93 = unsigned integer 16;    class "pxeclients" {

<other lines>

        match if substring (option vendor-class-identifier, 0, 9) =
"PXEClient";
        if option client-architecture = 00:07 {
            filename "/bootx64.EFI";
        }
        elsif option client-architecture = 00:06 {
            filename "/bootia32.EFI";
        }
        else {
            filename "/pxelinux.0";
        }
    }

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
_______________________________________________
Mail for each SME Contribs bug report
To unsubscribe, e-mail [email protected]
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

Reply via email to