Skip to content

Instantly share code, notes, and snippets.

@ggirou
Last active May 20, 2018 12:03
Show Gist options
  • Save ggirou/671069f7a1c4b48e9b986d3e4f689161 to your computer and use it in GitHub Desktop.
Save ggirou/671069f7a1c4b48e9b986d3e4f689161 to your computer and use it in GitHub Desktop.
VoCore2

VoCore2 Ultimate

http://vocore.io/v2u.html

Connect to VoCore2 wifi hotspot

Open http://192.168.61.1

Or

ssh root@192.168.61.1

Default password: vocore

Connect to usb

USB2TTL parameter: 115200bps, 8 data bits, no even-odd check, 1 stop bit.

Picocom

brew install picocom
picocom -b 115200 /dev/tty.usbmodem_____1

To exit:

Ctrl+a, Ctrl+x

Screen

screen /dev/tty.usbmodem_____1 115200,cs8,-parenb,-cstopb,-hupcl

To exit:

Ctrl+a+\

Kermit

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

Source: http://forum.vocore.io/viewtopic.php?f=9&t=1902

Free busy tty

sudo lsof /dev/tty.usbmodem_____1
kill ...

Package manager

Source: https://openwrt.org/docs/guide-user/additional-software/opkg

opkg list
opkg update

Upgrade all packages

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.

Upgrade firmware to LEDE

TODO

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment