net/webrepl/webrepl_setup.py: Create boot.py if it doesn't exist. #902
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello!
There are many instances online about people complaining of
OSError: [Errno 2] ENOENT
errors when trying to initialize WebREPL, particularly on the Pico W.It appears that these people are not using
boot.py
in their projects, butwebrepl_setup
relies on its existence to function.However, it does not create the file if it doesn't exist, and fails with
OSError: [Errno 2] ENOENT
.Since there isn't a .py file to easily trace through (as
webrepl_setup
andwebrepl
are usually pre-compiled and included in pre-built Micropython binaries), many users struggle to realize that they're missing aboot.py
file forwebrepl_setup
to write to.This PR adds a check (new function
validate_boot_file()
) beforeget_daemon_status()
, which checks for the existence ofboot.py
and creates the file if it doesn't exist. This solves theOSError: [Errno 2] ENOENT
error when trying to runwebrepl_setup.py
without aboot.py
file!