@@ -49,12 +49,12 @@ then finally visit http://localhost/ to see the REST Server up and running.
- E.g. : Suppose builds for "guacamoleb" devices are stored at "/mnt/rom/builds/full/test/guacamoleb". The file "/mnt/rom/builds/full/test/guacamoleb/migration_paths.json" should then have contents like:
```json
{
"9":[9,10],
"10":[10,11]
"9":[10],
"10":[11]
}
```
- The contents should be read as: Upgrades from major version 9 to major version 9 and to major version 10 are allowed. Upgrades from major version 10 to major version 10 and to major version 11 are allowed.
-If file is not available or there is no entry specified, it is assumed that same version upgrades are allowed (e.g: "9" to "9" is an allowed upgrade)
-Current version is always available as an upgrade (if a more recent build is found), even if file is not available (for backwards compatibility too).