Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

micropython/net/webrepl/webrepl_setup.py: Check for existence of boot.py and create it if needed. #897

Closed
wants to merge 1 commit into from

Conversation

Darkhand81
Copy link

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, but webrepl_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 and webrepl are usually pre-compiled and included in pre-built Micropython binaries), many users struggle to realize that they're missing a boot.py file for webrepl_setup to write to.

This PR adds a check (new function validate_boot_file()) before get_daemon_status(), which checks for the existence of boot.py and creates the file if it doesn't exist. This solves the OSError: [Errno 2] ENOENT error when trying to run webrepl_setup.py without a boot.py file!

@Darkhand81 Darkhand81 changed the title Check for existence of boot.py and create it if needed micropython/net/webrepl/webrepl_setup.py: Check for existence of boot.py and create it if needed. Jul 14, 2024
@Darkhand81 Darkhand81 closed this Jul 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant