From 564feba82e346e3b310262c87164a0bc9fa5bba1 Mon Sep 17 00:00:00 2001 From: Thomas Glanzmann Date: Sat, 19 Mar 2022 21:11:54 +0100 Subject: [PATCH] put installer data under revision control --- installer_data.json | 57 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 installer_data.json diff --git a/installer_data.json b/installer_data.json new file mode 100644 index 0000000..20e5336 --- /dev/null +++ b/installer_data.json @@ -0,0 +1,57 @@ +{ + "os_list": [ + { + "name": "Debian bookworm (testing) packaged by Thomas Glanzmann", + "default_os_name": "Debian", + "boot_object": "m1n1.bin", + "next_object": "m1n1/boot.bin", + "package": "debian-base.zip", + "supported_fw": ["12.1", "12.3"], + "partitions": [ + { + "name": "EFI", + "type": "EFI", + "size": "512MB", + "format": "fat", + "copy_firmware": true, + "copy_installer_data": true, + "source": "esp" + }, + { + "name": "Root", + "type": "Linux", + "size": "5GB", + "expand": true, + "image": "media" + } + ] + } + { + "name": "Fedora 35 Workstation packaged by Thomas Glanzmann", + "default_os_name": "Fedora", + "boot_object": "m1n1.bin", + "next_object": "m1n1/boot.bin", + "package": "fc35-base.zip", + "supported_fw": ["12.1", "12.3"], + "partitions": [ + { + "name": "EFI", + "type": "EFI", + "size": "512MB", + "format": "fat", + "volume_id": "0x1d531917", + "copy_firmware": true, + "copy_installer_data": true, + "source": "esp" + }, + { + "name": "Root", + "type": "Linux", + "size": "11GB", + "expand": true, + "image": "media" + } + ] + } + ] +} -- 2.39.2