Patrick Williams | 6f3379d | 2024-09-04 16:37:24 -0400 | [diff] [blame] | 1 | #!/bin/bash -e |
| 2 | |
| 3 | script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" |
| 4 | obmc_dir=${script_dir}/../../ |
| 5 | |
| 6 | cd "$obmc_dir" |
| 7 | |
| 8 | cat > meta-phosphor/docs/supported-machines.md << EOF |
| 9 | # Supported machines |
| 10 | |
| 11 | The following machine product or codenames have some code which has been |
| 12 | contributed to the project for support. The specific level of functionality |
| 13 | supported is unknown and has no level of warranty, promise of future |
| 14 | development, or bug-fix guarantee. |
| 15 | |
| 16 | Systems which are actively developed and maintained by vendors are often |
| 17 | covered by [Jenkins](https://jenkins.openbmc.org/job/ci-openbmc/) CI testing. |
| 18 | |
| 19 | ## List |
| 20 | |
| 21 | EOF |
| 22 | |
| 23 | ./setup machines >> meta-phosphor/docs/supported-machines.md |