1#!/bin/sh 2 3# Init entrypoint for bare-metal devices; calls common init code. 4 5# First stage: very basic setup to bring up network and /dev etc 6/init-stage1.sh 7 8# Second stage: run jobs 9test $? -eq 0 && /init-stage2.sh 10 11# Wait until the job would have timed out anyway, so we don't spew a "init 12# exited" panic. 13sleep 6000 14