I am very new to tinycore, and I would like to set up a tinycore os on my raspberry pi zero w. I do not have a keyboard nor a monitor that I can connect through HDMI. So I'm trying to autoconnect to the wifi so that I can ssh at the very first boot. But it never connects on the network. I have put the following files on /tce/optional/
ca_certificates.tcz
firmware-rpi3-wireless.tcz
libiw.tcz
libnl.tcz
ncurses.tcz
openssl.tcz
readline.tcz
wifi.tcz
wireless_tools.tcz
wireless-4.9.22-piCore.tcz
wpa_supplicant.tcz
plus the corresponding .md5.txt and .dep files
Here is my tce/onboot.lst
mc.tcz
openssh.tcz
firmare-rpi3-wireless.tcz
wireless_tools.tcz
wireless-4.9.22-piCore.tcz
wpa_supplicant.tcz
wifi.tcz
Here is my bootlocal.sh
#!/bin/sh
wpa_supplicant -iwlan0 -Dwext -c/opt/wpa_configure.conf -B &
I have set my wpa_credentials.conf as it should
ctrl_interface=/var/run/wpa_supplicant
network={
ssid=MyBox
psk=MyPassword
proto=WPA
pairwise=TKIP
group=TKIP
key_mgmt=WPA-PSK
}
Besides, I cannot read any persistent log file that would be written after the boot in order to debug. I tried to run the script opt_save_varlogs.sh as described in
http://forum.tinycorelinux.net/index.php?topic=13075.0, but without success. So I'm wondering if the booting itself is failing, but I have no way to check that hypothesis...
I could set up a DietPi on my rpi that autoconnects to the wifi, so that I know that this is not a hardware problem.
Could anyone help me ?