mirror of
https://github.com/clearlinux/clr-installer.git
synced 2026-08-21 23:26:17 +00:00
2afeff5721
When converting an ister JSON configuration file to a clr-installer YAML configuration file, we want to ensure a single kernel is set. Additional kernel result in a warning as ISO mainly due to ISO generation limitation in the code. Add new coverage test for multiple kernels. Signed-off-by: Mark D Horn <mark.d.horn@intel.com>
37 lines
1.4 KiB
JSON
37 lines
1.4 KiB
JSON
{
|
|
"DestinationType" : "virtual",
|
|
"PartitionLayout" : [ { "disk" : "live.img",
|
|
"partition" : 1,
|
|
"size" : "64M",
|
|
"type" : "EFI" },
|
|
{ "disk" : "live.img",
|
|
"partition" : 2,
|
|
"size" : "5G",
|
|
"type" : "linux" } ],
|
|
"FilesystemTypes" : [ { "disk" : "live.img",
|
|
"partition" : 1,
|
|
"type" : "vfat" },
|
|
{ "disk" : "live.img",
|
|
"partition" : 2,
|
|
"type" : "ext4" } ],
|
|
"PartitionMountPoints" : [ { "disk" : "live.img",
|
|
"partition" : 1,
|
|
"mount" : "/boot" },
|
|
{ "disk" : "live.img",
|
|
"partition" : 2,
|
|
"mount" : "/" } ],
|
|
"Version": 7777,
|
|
"Bundles": ["bootloader",
|
|
"editors",
|
|
"kernel-native",
|
|
"kernel-lts",
|
|
"kernel-kvm",
|
|
"network-basic",
|
|
"os-core-update",
|
|
"os-core",
|
|
"openssh-server",
|
|
"sysadmin-basic"],
|
|
"PostNonChroot": ["/home/clrbuilder/projects/clr-release-tools/config/image/live-image-post-update-version.py"]
|
|
|
|
}
|