From 54ae0f889c0aed764322c85d394685a8ccc0d114 Mon Sep 17 00:00:00 2001 From: Tom Dewey <146750643+tdewey-rpi@users.noreply.github.com> Date: Fri, 10 Nov 2023 18:55:28 +0000 Subject: [PATCH] doc: Add example os_list sublist JSON To assist OS providers with publishing in Imager, provide an example os_list sublist. --- doc/os-sublist-example.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 doc/os-sublist-example.json diff --git a/doc/os-sublist-example.json b/doc/os-sublist-example.json new file mode 100644 index 0000000..8861520 --- /dev/null +++ b/doc/os-sublist-example.json @@ -0,0 +1,22 @@ +{ + "os_list": [ + { + "name": "Your Operating System Name", + "description": "What your operating system does!", + "url": "https://path.to/your/compressed/os.img.xz", + "icon": "https://path.to/your/logo-as-svg-or-png-40x40.svg", + "website": "https://path.to/your-website", + "release_date": "2023-11-10", + "extract_size": 4294967296, + "extract_sha256": "ef1c726f03b91d81d432646c304b52d546814dec2acf173b2d218db259e8e52f", + "image_download_size": 1073741824, + "image_download_sha256": "863848ed058779d4603009e63d221b532549df1c58290c6a035bb5217922dac1", + "devices": [ + "pi4-32bit", + "pi3-32bit", + "pi2-32bit" + ], + "init_format": "systemd" + }, + ] +}