Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 26-Jul-2024 | - | ||||
README.md | H A D | 08-Dec-2022 | 458 | 29 | 22 | |
netboot | H A D | 05-Dec-2022 | 3.8 KiB | 132 | 106 |
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