Add "PPC PReP Boot" filesystem for PowerPC blivet tests
This is required because anaconda is still checking for it even if not mandatory. Already tracked by bug https://bugzilla.redhat.com/show_bug.cgi?id=1172791 Signed-off-by: Michel Normand <normand@linux.vnet.ibm.com>
This commit is contained in:
parent
4b77b71771
commit
2fceef0eb3
@ -0,0 +1,15 @@
|
||||
{
|
||||
"area": [
|
||||
{
|
||||
"xpos": 409,
|
||||
"ypos": 311,
|
||||
"width": 100,
|
||||
"height": 17,
|
||||
"type": "match"
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
"anaconda_blivet_part_fs_ppc_prep_boot"
|
||||
],
|
||||
"properties": []
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 72 KiB |
@ -14,6 +14,9 @@ sub run {
|
||||
# if we're running on UEFI, we need esp
|
||||
custom_blivet_add_partition(size => 512, mountpoint => '/boot/efi', filesystem => 'efi_filesystem');
|
||||
}
|
||||
if (get_var("OFW")) {
|
||||
custom_blivet_add_partition(size => 4, filesystem => 'ppc_prep_boot');
|
||||
}
|
||||
|
||||
custom_blivet_add_partition(size => 512, mountpoint => '/boot');
|
||||
custom_blivet_add_partition(size => 2048, filesystem => 'swap');
|
||||
|
@ -14,6 +14,9 @@ sub run {
|
||||
# if we're running on UEFI, we need esp
|
||||
custom_blivet_add_partition(size => 512, mountpoint => '/boot/efi', filesystem => 'efi_filesystem');
|
||||
}
|
||||
if (get_var("OFW")) {
|
||||
custom_blivet_add_partition(size => 4, filesystem => 'ppc_prep_boot');
|
||||
}
|
||||
|
||||
custom_blivet_add_partition(size => 512, mountpoint => '/boot');
|
||||
custom_blivet_add_partition(size => 2048, filesystem => 'swap');
|
||||
|
@ -14,6 +14,9 @@ sub run {
|
||||
# if we're running on UEFI, we need esp
|
||||
custom_blivet_add_partition(size => 512, mountpoint => '/boot/efi', filesystem => 'efi_filesystem');
|
||||
}
|
||||
if (get_var("OFW")) {
|
||||
custom_blivet_add_partition(size => 4, filesystem => 'ppc_prep_boot');
|
||||
}
|
||||
|
||||
custom_blivet_add_partition(size => 512, mountpoint => '/boot');
|
||||
# add new LVM device
|
||||
|
@ -14,6 +14,9 @@ sub run {
|
||||
# if we're running on UEFI, we need esp
|
||||
custom_blivet_add_partition(size => 512, mountpoint => '/boot/efi', filesystem => 'efi_filesystem');
|
||||
}
|
||||
if (get_var("OFW")) {
|
||||
custom_blivet_add_partition(size => 4, filesystem => 'ppc_prep_boot');
|
||||
}
|
||||
|
||||
custom_blivet_add_partition(size => 512, mountpoint => '/boot');
|
||||
custom_blivet_add_partition(mountpoint => '/');
|
||||
|
@ -14,6 +14,9 @@ sub run {
|
||||
# if we're running on UEFI, we need esp
|
||||
custom_blivet_add_partition(size => 512, mountpoint => '/boot/efi', filesystem => 'efi_filesystem');
|
||||
}
|
||||
if (get_var("OFW")) {
|
||||
custom_blivet_add_partition(size => 4, filesystem => 'ppc_prep_boot');
|
||||
}
|
||||
|
||||
custom_blivet_add_partition(size => 512, mountpoint => '/boot');
|
||||
custom_blivet_add_partition(size => 2048, filesystem => 'swap');
|
||||
|
@ -14,6 +14,9 @@ sub run {
|
||||
# if we're running on UEFI, we need esp
|
||||
custom_blivet_add_partition(size => 512, mountpoint => '/boot/efi', filesystem => 'efi_filesystem');
|
||||
}
|
||||
if (get_var("OFW")) {
|
||||
custom_blivet_add_partition(size => 4, filesystem => 'ppc_prep_boot');
|
||||
}
|
||||
|
||||
custom_blivet_add_partition(size => 512, mountpoint => '/boot');
|
||||
custom_blivet_add_partition(size => 2048, filesystem => 'swap');
|
||||
|
Loading…
Reference in New Issue
Block a user