Viccyware: Difference between revisions
viccyware a bit more info |
how 2 install? |
||
| Line 3: | Line 3: | ||
Inspired by CozmoWare, this project is moving Cozmo animations, sounds, and games, into modern VicOS (Vector's operating system). | Inspired by CozmoWare, this project is moving Cozmo animations, sounds, and games, into modern VicOS (Vector's operating system). | ||
[[index.php?title=Category:CFW]] | [[index.php?title=Category:CFW]] | ||
== Installation == | |||
'''''THIS SECTION IS TAKEN FROM''' https://viccyware.com/install-guide, '''THANKS VICCYWARE TEAM''''' | |||
The first thing you need to do, is go to the [https://ota.viccyware.com Viccyware ota site] and grab the link for the latest ota for your bot. This can be done by right clicking on the button that has the OTA you need, and clicking "copy link address". | |||
=== From wireOS === | |||
WireOS has a custom update-engine which allows otas of any kind to be installed onto a bot. To install Viccyware you need to ssh into your bot and run the command below making sure you are using the correct OTA type for your bot. Make sure you remove the brackets from the link and that the link is http and not https | |||
<code>update-os [ota-link]</code> (replace [ota-link] with the link copied earlier) | |||
Once the update is done, your bot will reboot automatically. | |||
=== From Anki/DDL Official Firmware === | |||
Official Anki or DDL firmware has a update-engine which checks signing, so you'll need to run the commands below in order to get a nosigning update engine. | |||
<code>systemctl stop anki-robot.target</code> | |||
<code>mount -o rw,remount,exec /data</code> | |||
<code>curl -o /data/update-engine <nowiki>http://ota.pvic.xyz/update-engine</nowiki></code> | |||
<code>chmod +rwx /data/update-engine</code> | |||
Once you have this custom update-engine installed, just run the following command. (Make sure you remove the brackets from the link and that the link is http and not https) | |||
<code>/data/update-engine [ota-link] -v</code> (replace [ota-link] with the link copied earlier) | |||
Once the update is done, your bot will reboot automatically. | |||