Is there any way to make libs read/write after booting or to execute a script before the drive is unmounted?
Been getting this error while compiling some python packages on piCore 12 armv7l:
File "/usr/local/lib/python3.8/zipfile.py", line 360, in __init__
raise ValueError('ZIP does not support timestamps before 1980')
ValueError: ZIP does not support timestamps before 1980
And sure enough the file's last modified date is 1969-- most are 2021, including all python .tcz extensions in ../tce/optional. I tried this, but everything is read-only:
tc@box:/usr/local/lib/python3.8$ mostrecent="`ls -t | head -n1`"
tc@box:/usr/local/lib/python3.8$ sudo touch -r "$mostrecent" *
-> touch: cannot touch 'EVERY_FILE_HERE': Read-only file system
Chmod doesn't work either. Date returns a recent date/time persistently, updating the date was one of the first things I did on this image.