1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-24 17:28:08 +00:00

Merge branch 'master' into dev

This commit is contained in:
Jerry Seutter 2014-10-10 15:24:08 -06:00
commit c0fc093ab7
2 changed files with 1 additions and 6 deletions

View File

@ -82,12 +82,10 @@ QEMU_UPDATE_SCHEMA = {
"hda_disk_image": { "hda_disk_image": {
"description": "QEMU hda disk image path", "description": "QEMU hda disk image path",
"type": "string", "type": "string",
"minLength": 1,
}, },
"hdb_disk_image": { "hdb_disk_image": {
"description": "QEMU hdb disk image path", "description": "QEMU hdb disk image path",
"type": "string", "type": "string",
"minLength": 1,
}, },
"ram": { "ram": {
"description": "amount of RAM in MB", "description": "amount of RAM in MB",
@ -113,17 +111,14 @@ QEMU_UPDATE_SCHEMA = {
"initrd": { "initrd": {
"description": "QEMU initrd path", "description": "QEMU initrd path",
"type": "string", "type": "string",
"minLength": 1,
}, },
"kernel_image": { "kernel_image": {
"description": "QEMU kernel image path", "description": "QEMU kernel image path",
"type": "string", "type": "string",
"minLength": 1,
}, },
"kernel_command_line": { "kernel_command_line": {
"description": "QEMU kernel command line", "description": "QEMU kernel command line",
"type": "string", "type": "string",
"minLength": 1,
}, },
"options": { "options": {
"description": "additional QEMU options", "description": "additional QEMU options",

View File

@ -23,5 +23,5 @@
# or negative for a release candidate or beta (after the base version # or negative for a release candidate or beta (after the base version
# number has been incremented) # number has been incremented)
__version__ = "1.0beta4.dev1" __version__ = "1.0beta4.dev2"
__version_info__ = (1, 0, 0, -99) __version_info__ = (1, 0, 0, -99)