source: MondoRescue/branches/3.3/mindi-busybox/qemu_multiarch_testing/hdc.dir/init@ 3621

Last change on this file since 3621 was 3621, checked in by Bruno Cornec, 7 years ago

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

  • Property svn:executable set to *
File size: 280 bytes
Line 
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 || { echo "cd: $?"; exit 1; }
8exec ./build
9echo "Failed to exec ./build"
Note: See TracBrowser for help on using the repository browser.