From 5bd40825a9311d0a470eeab629d31d2b224e9e57 Mon Sep 17 00:00:00 2001 From: Steffen Winterfeldt Date: Tue, 14 Feb 2023 17:33:05 +0100 Subject: [PATCH] support 32 bit UEFI firmware on x86_64/i386 architecture (bsc#1208003, jsc#PED-2569) --- src/lib/y2storage/subvol_specification.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/y2storage/subvol_specification.rb b/src/lib/y2storage/subvol_specification.rb index a853c32524..fddec4c0ea 100644 --- a/src/lib/y2storage/subvol_specification.rb +++ b/src/lib/y2storage/subvol_specification.rb @@ -47,6 +47,7 @@ class SubvolSpecification "var/opt", "var/spool", "var/tmp", + "boot/grub2/i386-efi", "boot/grub2/i386-pc", "boot/grub2/x86_64-efi", "boot/grub2/powerpc-ieee1275", @@ -64,6 +65,7 @@ class SubvolSpecification # Subvolumes, from the lists above, that contain architecture modifiers SUBVOL_ARCHS = { + "boot/grub2/i386-efi" => ["i386", "x86_64"], "boot/grub2/i386-pc" => ["i386", "x86_64"], "boot/grub2/x86_64-efi" => ["x86_64"], "boot/grub2/powerpc-ieee1275" => ["ppc", "!board_powernv"],