Hi Aladin
... my problem is how to install or copie all my python script (folder) in the SD card and visualize it in PiCore (i mean in Raspbian i use git clone) ...
If you want git, you can install it:
tce-load -iw git
then i want to make the program run for the first boot of Raspberry ...
Only the very first time it was ever booted? Create a script called RunOnce.sh in /opt containing:
#!/bin/sh
# Test if /opt/FirstBoot exists. Exit the script if it does.
[ -e "/opt/FirstBoot" ] && exit
# /opt/FirstBoot didn't exist, so create it.
touch /opt/FirstBoot
Place the command to run your program here
Make the script executable:
chmod 775 /opt/RunOnce.sh
If you are running X, you can create a file (name doesn't matter) in ~/.X.d containing the following line:
/opt/RunOnce.sh
This will launch the script once X is running.
If you are not running X, you can add the /opt/RunOnce.sh line to ~/.profile.
You may also want to take an hour to read this fine book:
http://tinycorelinux.net/corebook.pdfIt will teach you some concepts that are unique to Tinycore Linux.