Last change
on this file since 3621 was 3621, checked in by Bruno Cornec, 8 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
|
---|
4 | echo "Copying to /home"
|
---|
5 | # Had a case where cp SEGVs, let's have diagnostics for it
|
---|
6 | cp -a /mnt /home || { echo "cp: $?"; exit 1; }
|
---|
7 | cd /home/mnt || { echo "cd: $?"; exit 1; }
|
---|
8 | exec ./build
|
---|
9 | echo "Failed to exec ./build"
|
---|
Note:
See
TracBrowser
for help on using the repository browser.