1#!/bin/sh
2
3# Emit a msg to let user know this place was reached
4echo "Copying to /home"
5# Had a case where cp SEGVs, let's have diagnostics for it
6cp -a /mnt /home || { echo "cp: $?"; exit 1; }
7cd /home/mnt || exit $?
8exec ./init2
9echo "Failed to exec ./init2"
10