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