Go to file
Javier Sánchez Parra 0411d2bf94 #1008 Adapt virtual disk setup JSON format
Previous commits updates ogClient and ogServer to support several disks
in Linux (ogLive) mode. This changes disk setup JSON format from an
object to an array. ogClient in virtual mode also need to satisfy this
new format, although it not support several disks.

Adapt ogClient virtual mode to satisfy new disk setup JSON format.

Old format:

    "disk_setup": {
        "disk": 1,
        "partition": 0,
        "code": "0",
        "filesystem": "",
        "os": "",
        "size": 32685957,
        "used_size": 6
    },

New format:

    "disk_setup": [
        {
            "disk": 1,
            "partition": 0,
            "code": "0",
            "filesystem": "",
            "os": "",
            "size": 32685957,
            "used_size": 6
        }
    ],
2020-11-19 13:20:08 +01:00
cfg Rename 'linux' mode to 'live' mode 2020-06-05 14:55:10 +02:00
src #1008 Adapt virtual disk setup JSON format 2020-11-19 13:20:08 +01:00
tests rename main.py to ogclient 2020-06-26 11:04:32 +02:00
.gitignore Create new ogClient 2020-01-19 19:50:44 +01:00
COPYING Rename LICENSE to COPYING 2020-06-18 16:45:46 +02:00
ogclient rename main.py to ogclient 2020-06-26 11:04:32 +02:00
setup.py Fix license name in setup.py 2020-11-06 12:05:56 +01:00