Open http://192.168.61.1
Or
ssh [email protected]
Default password:
vocore
USB2TTL parameter: 115200bps, 8 data bits, no even-odd check, 1 stop bit.
brew install picocom
picocom -b 115200 /dev/tty.usbmodem_____1
To exit:
Ctrl+a, Ctrl+x
screen /dev/tty.usbmodem_____1 115200,cs8,-parenb,-cstopb,-hupcl
To exit:
Ctrl+a+\
brew install c-kermit
kermit
Then:
set line /dev/tty.usbmodem_____1
define sz !sz \%0 > /dev/tty.usbmodem_____1 < /dev/tty.usbmodem_____1
set speed 115200
set carrier-watch off
set prefixing all
set parity none
set stop-bits 1
set modem none
set file type bin
set file name lit
set flow-control none
set prompt "MacOS Kermit> "
Finally:
connect
To exit:
Ctrl+\, c
exit
sudo lsof /dev/tty.usbmodem_____1
kill ...
Source: https://openwrt.org/docs/guide-user/additional-software/opkg
opkg list
opkg update
opkg list-upgradable | cut -f 1 -d ' ' | xargs opkg upgrade
Since LEDE firmware stores the base system in a compressed read-only partition, any update to base system packages will be written in the read-write partition and therefore use more space than it would if it was just overwriting the older version in the compressed base system partition. It's recommended to check the available space in internal flash memory and the space requirements for updates of base system packages.
- https://openwrt.org/toh/hwdata/vocore/vocore_vocore2
- http://forum.vocore.io/viewtopic.php?f=16&t=3514
TODO