From a2dce8a1f9a5880cb4a4a1306f1cbfc0ad321d4a Mon Sep 17 00:00:00 2001 From: peri4 Date: Wed, 25 Dec 2024 14:14:19 +0300 Subject: [PATCH] README.md --- README.md | 62 +++++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 51 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index d67a11e..020443d 100644 --- a/README.md +++ b/README.md @@ -3,22 +3,62 @@ ## Crosscompiling ``` { - "Platforms": { + "install_instructions": { + + "inst_set_1": [ + "line 1", + "line 2" + ], + + "inst_set_2":[ + "line 1", + "line 2", + "line 3", + "line 4" + ] + + }, + + "platforms": { + + "Debian NN": { + "enabled": true, + "codename": "", + "docker": { + "directory": "", + "image_basename": ", + "build_options": { + "image_from": "", + "image_prepare_script": "" + } + }, + "ppa": { + "filters": [""], + "install_instructions": "inst_set_1" + } + }, + "Some crosscompile image": { "enabled": true, "codename": "", - "docker_dir": "", - "docker_image": "", - "docker_build_options": { - "image_from": "", - "image_prepare_script": "", - "arch": "", - "toolchain": "", - "triplet": "" - }, "cmake_toolchain": "", - "ppa_filters": [""] + "docker": { + "directory": "", + "image_basename": ", + "build_options": { + "image_from": "", + "image_prepare_script": "", + "arch": "", + "toolchain": "", + "triplet": "" + } + }, + "ppa": { + "filters": [""], + "install_instructions": "inst_set_2" + } } + } } ```