10-25-2015, 05:02 AM
(10-24-2015, 03:31 PM)is0-mick Wrote: I think they areI tried this morning to do a "simple" copy of all data on the internal Innotab memory to my SDcard.`
/vp_mnt/if_sd/LLN/APPS/Games
/vp_mnt/if_sd/LLN/APPS/Books
/vp_mnt/if_sd/LLN/APPS/Other
you could always so something like this in your script and find out where everything is...
ls -aR / >/vp_mnt/sd/dirlist.txt
or
ls -aR /vp_mnt/ >/vp_mnt/sd/dirlist.txt
Mick
Using this simple script :
__________________________________________________________________________________
#!/bin/sh
echo "this is mytest.sh"
sleep 10
echo "slept"
killall -9 appswitch
killall -9 desktopManager
killall -9 flashplayer
mount >/tmp/mounts
mkfifo /testfifo
lcdterm -daemon /testfifo
#ps -A >/vp_mnt/sd/ps.txt
echo "Copy my games..." >/testfifo
echo "By Ours" >/testfifo
echo "" >/testfifo
sleep 2
mkdir /vp_mnt/sdcard/copy >/testfifo
cp -aR /vp_mnt/if_sd/LLN/*.* /vp_mnt/sdcard/copy >/testfifo
echo "Copy completed" >/testfifo
------------------------------------------------------------------------------------------------------------
On the screen of the Innotab, I see
Copy my games
By ours
**then immediatly after
Copy completed
and Nothin on my SD card.
Have I missed somthing ?