rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | # This is an example configuration file for syslinux. |
| 2 | TIMEOUT 50 |
| 3 | ALLOWOPTIONS 1 |
| 4 | SERIAL 0 115200 |
| 5 | PROMPT 0 |
| 6 | |
| 7 | UI vesamenu.c32 |
| 8 | menu title Select boot options |
| 9 | menu tabmsg Press [Tab] to edit, [Return] to select |
| 10 | |
| 11 | DEFAULT Graphics console boot |
| 12 | |
| 13 | LABEL Graphics console boot |
| 14 | KERNEL /vmlinuz |
| 15 | APPEND label=boot rootwait |
| 16 | |
| 17 | LABEL Serial console boot |
| 18 | KERNEL /vmlinuz |
| 19 | APPEND label=boot rootwait console=ttyS0,115200 |
| 20 | |
| 21 | LABEL Graphics console install |
| 22 | KERNEL /vmlinuz |
| 23 | APPEND label=install rootwait |
| 24 | |
| 25 | LABEL Serial console install |
| 26 | KERNEL /vmlinuz |
| 27 | APPEND label=install rootwait console=ttyS0,115200 |