diff options
author | Corentin LABBE <clabbe@baylibre.com> | 2019-04-25 15:41:28 +0200 |
---|---|---|
committer | Corentin LABBE <clabbe@baylibre.com> | 2019-04-25 15:41:28 +0200 |
commit | 2fb6759a52e2e7ba267d0c0b93c1b32d4bd98dcb (patch) | |
tree | d5072f50f079bfe7b9a42752d140590fead23e9f | |
parent | 168455b7c95996ce913d5094bb7f46d1ab486430 (diff) |
README: Add an example on how to use PXE
This patch adds an example on how to uses PXE with lava-docker.
-rw-r--r-- | README.md | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -422,6 +422,19 @@ slave: env: - "http_proxy: http://dns:port" +## How to use a board which uses PXE ? +All boards which uses PXE, could be used with LAVA via grub. +But you need to add a configuration in your DHCP server for that board. +This configuration need tell to the PXE to get GRUB for the dispatcher TFTP. +EXample for an upsquare and a dispatcher availlable at 192.168.66.1: +``` + host upsquare { + hardware ethernet 00:07:32:54:41:bb; + filename "/boot/grub/x86_64-efi/core.efi"; + next-server 192.168.66.1; + } +``` + ## Bugs, Contact The prefered way to submit bugs are via the github issue tracker You can also contact us on #lava-docker on the freenode IRC network |