diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-04-20 13:47:56 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-04-20 18:01:09 +0300 |
commit | 584406880c8354d87a714f934e1984393ec76c3b (patch) | |
tree | 3202ca7e74eb79434ef81fb4e12fadcd442af431 /esp8266/scripts | |
parent | 2494399a42bff3b8286a4ccc7ae29e03645f230d (diff) | |
download | micropython-584406880c8354d87a714f934e1984393ec76c3b.tar.gz micropython-584406880c8354d87a714f934e1984393ec76c3b.zip |
esp8266/scripts/_boot: Print notice when initial setup is executed.
Diffstat (limited to 'esp8266/scripts')
-rw-r--r-- | esp8266/scripts/_boot.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/esp8266/scripts/_boot.py b/esp8266/scripts/_boot.py index 7e38f03236..532c5b77e2 100644 --- a/esp8266/scripts/_boot.py +++ b/esp8266/scripts/_boot.py @@ -8,6 +8,7 @@ try: except OSError: import inisetup inisetup.check_bootsec() + print("Performing initial setup") uos.VfsFat.mkfs(bdev) vfs = uos.VfsFat(bdev, "") inisetup.wifi() |