Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support 32 bit UEFI firmware on x86_64/i386 architecture (bsc#1208003, jsc#PED-2569) #1320

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/lib/y2storage/subvol_specification.rb
Expand Up @@ -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",
Expand All @@ -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"],
Expand Down