Hi Juanito. Going to third decimal place in the TCL version breaks the getMajorVer and getMirror functions in /etc/init.d/tc-functions:
$ . /etc/init.d/tc-functions
$ getFullVer
17.1.1
$ getMajorVer
17.1
$ getMirror
$ echo $MIRROR
http://repo.tinycorelinux.net/17.1.x/x86_64/tcz # correct mirror should be http://repo.tinycorelinux.net/17.x/x86_64/tczI ran into this issue in the past and proposed a fix. I'll try to find it in the forum.
EDIT: I couldn't find what I proposed before, but something like this would work:
getMajorVer() {
getFullVer | grep -Eo '^[0-9]+'
}