samples: set legacy to false in f30 aarch64 sample

The "legacy" option in stages/org.osbuild.grub2 defaults to True:
`legacy = options.get("legacy", True)`
If both legacy and uefi is enable, the stage will try to create a hybrid
image, but that fails for aarch64. This patch makes sure we use uefi
mode only which fixed this issue.

I tested the patch by hand together with the fix from this PR:
https://github.com/osbuild/osbuild/pull/308
This commit is contained in:
Martin Sehnoutka 2020-04-01 17:46:40 +02:00 committed by Christian Kellner
parent 1614fb202d
commit 9acc0575ab

View file

@ -74,6 +74,7 @@
"options": {
"root_fs_uuid": "7acfe2cc-4134-482a-a9d4-4979a5a87569",
"kernel_opts": "ro biosdevname=0 net.ifnames=0 console=ttyS0 console=tty1",
"legacy": false,
"uefi": {
"vendor": "fedora"
}