summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Bauer2014-07-25 15:55:44 +0200
committerJonathan Bauer2014-07-25 15:55:44 +0200
commitaf6f56d837bf84c7debb0c9d390a880ac83e815e (patch)
treef2ace80aa17776ce7a5ae3460e9dbc088b40ee76
parentoops2 - debug code .... (diff)
downloadtm-scripts-af6f56d837bf84c7debb0c9d390a880ac83e815e.tar.gz
tm-scripts-af6f56d837bf84c7debb0c9d390a880ac83e815e.tar.xz
tm-scripts-af6f56d837bf84c7debb0c9d390a880ac83e815e.zip
[rfs-s31] fix copying of the busybox
as its no longer in /usr, just copy /bin and /sbin. Even if they are symlinked, it should work :)
-rwxr-xr-xremote/rootfs/rootfs-stage31/data/init2
1 files changed, 1 insertions, 1 deletions
diff --git a/remote/rootfs/rootfs-stage31/data/init b/remote/rootfs/rootfs-stage31/data/init
index 8dd0c529..e1341381 100755
--- a/remote/rootfs/rootfs-stage31/data/init
+++ b/remote/rootfs/rootfs-stage31/data/init
@@ -87,7 +87,7 @@ bench_event "STAGE32" "Downloaded stage 3.2"
# copy files needed for stage3.2 to FUTURE_ROOT
echo "Copying busybox etc. to stage32..."
-cp -a "/usr/bin" "/usr/sbin" "${FUTURE_ROOT}/opt/openslx/"
+cp -a "/bin" "/sbin" "${FUTURE_ROOT}/opt/openslx/"
mkdir -p "${FUTURE_ROOT}/opt/openslx/inc"
cp -a "/inc/functions" "${FUTURE_ROOT}/opt/openslx/inc/"