diff --git a/check-needles.py b/check-needles.py index ae0b14ba..f6e270e4 100755 --- a/check-needles.py +++ b/check-needles.py @@ -128,7 +128,7 @@ for user in ("jack", "jim"): testtags.append(f"user_confirm_{user}") # partitioning stuff, there's a bunch of this, all in anaconda.pm # multiple things use this -for part in ("swap", "root", "efi", "boot", "bootefi", "home", "vda2"): +for part in ("swap", "root", "efi", "boot", "bootefi", "home"): testtags.append(f"anaconda_part_select_{part}") testtags.append(f"anaconda_blivet_part_inactive_{part}") # select_disks diff --git a/tests/disk_custom_blivet_resize_lvm.pm b/tests/disk_custom_blivet_resize_lvm.pm index ccbfc56a..e0b06857 100644 --- a/tests/disk_custom_blivet_resize_lvm.pm +++ b/tests/disk_custom_blivet_resize_lvm.pm @@ -42,12 +42,7 @@ sub run { } # Select the boot partition and reformat it and remount. - my $devboot = 'boot'; - if (get_var('OFW')) { - # for PowerPC vda1 is PreP partition. - $devboot = 'vda2'; - } - activate($devboot); + activate('boot'); # Boot is the only ext4 partition on that scheme, so we will use that to make a needle. wait_still_screen 5; custom_blivet_format_partition(type => 'ext4', label => 'boot', mountpoint => '/boot');