Hi
The latest stable release right now is
piCore-12.0I'm using RPI4, but the principles are the same.
You flash the image on your SD card and expand the second partition.
To get wifi working, you'll need
firmware-rpi-wifi.tcz and
wifi.tczUsually, we fetch the extensions along with their dependencies with
tce-loadHowever, that requires internet connection.
So the work around is to download the files on other machine, and then you move it to where it should be.
In your case, the required files are: (piCore12)
firmware-rpi-wifi.tcz
wifi.tcz
wireless_tools.tcz
wireless-5.4.51-piCore.tcz
wpa_supplicant.tcz
libnl.tcz
openssl.tcz
ca-certificates.tcz
readline.tcz
ncurses.tcz
These files take less than 20MB of space, which should be able to fit in the first partition without deleting anything.
Download these extensions from
http://tinycorelinux.net/12.x/armv6/tcz/Store them in the first partition of your SD card with your windows 7
Boot up the machine, move them to your tce/optional
mount /mnt/mmcblk0p1
mv /mnt/mmcblk0p1/*.tcz /mnt/mmcblk0p2/tce/optional
Load the extensions to see if the wifi works
cd /mnt/mmcblk0p2/tce/optional
tce-load -i *.tcz
sudo wifi.sh
If everything goes well, generate the checksums and download the dep files
cd /mnt/mmcblk0p2/tce/optional
for F in *.tcz; do
md5sum $F > ${F}.md5.txt
done
tce-audit updatedeps
tce-update