Name Date Size #Lines LOC

..26-Jul-2024-

README.mdH A D08-Dec-2022458 2922

netbootH A D05-Dec-20223.8 KiB132106

README.md

1# Netboot: a remote OpenBMC host via telnet (and hopefully at some stage, ssh)
2
3To configure, edit `${HOME}/.config/obmc-scripts/netboot` to configure a
4machine:
5
6```toml
7[foo]
8platform = "bar"
9user = "baz"
10password = "quux"
11
12    # telnet serial server
13    [foo.console]
14    host = "1.2.3.4"
15    port = 5678
16
17    [foo.u-boot]
18    commands = [
19        "setenv bootfile fitImage",
20        "tftp",
21    ]
22```
23
24Then netboot your machine:
25
26```sh
27./netboot foo
28```
29