Freezing resources that are not Python scripts
I want to flash modules with html files together, but I can't read them.
e.g list
_boot.py
public/index.html
I modified makemanifest.py to pass other files types as path, I cheked existing it in the firmware.elf, and it exist, but I cant read it for send by http
May be exist way for read those files or what sorces can I modify for get this possibility?
Follow links: Restore old behaviour of freezing (linked) directories in modules/
While the new manifest.py style got introduced for freezing python code
into the binary, the old way - where files and modules within
ports/*/modules where baked into the resulting binary - was still
supported via "freeze('$(PORT_DIR)/modules')" within manifest.py.
However behaviour changed for symlinks to modules (=directories), as
those links weren't followed anymore.
Restore old behaviour by explicitly following symlinks within modules/
directory.