Manifest: always set kernel options in grub2 stage
It turned out that when we stopped setting the kernel options in grubenv file, we also stopped setting them in /etc/default/grub under `GRUB_CMDLINE_LINUX`. This file is used by grub2-mkconfig when generating grub configuration. 10_linux script executed by grub2-mkconfig recently started to overwrite the /etc/kernel/cmdline, if its timestamp is older than the timestamp of /etc/default/grub [1]. As a result, all kernel options were wiped out from /etc/kernel/cmdline. Make sure that we always set the `KernelOptions` in the grub2 stage options, even if the `WriteCmdLine` is set to `false`. In addition, unify the way we concatenate kernel options set in the grub2 stage options. Some pipeline implementations were previously using space, other were using comma. Space is now used everywhere. Regenerate all affected image manifests. [1] https://src.fedoraproject.org/rpms/grub2/c/fc76aed5333f56dd05400521a35b944a5df52ebc Signed-off-by: Tomáš Hozza <thozza@redhat.com>
This commit is contained in:
parent
03973acc1f
commit
dc637d9a57
210 changed files with 226 additions and 52 deletions
|
|
@ -238,6 +238,7 @@ func (p *OSTreeDeployment) serialize() osbuild.Pipeline {
|
||||||
}
|
}
|
||||||
|
|
||||||
grubOptions := osbuild.NewGrub2StageOptionsUnified(p.PartitionTable,
|
grubOptions := osbuild.NewGrub2StageOptionsUnified(p.PartitionTable,
|
||||||
|
strings.Join(kernelOpts, " "),
|
||||||
"",
|
"",
|
||||||
p.platform.GetUEFIVendor() != "",
|
p.platform.GetUEFIVendor() != "",
|
||||||
p.platform.GetBIOSPlatform(),
|
p.platform.GetBIOSPlatform(),
|
||||||
|
|
@ -249,7 +250,6 @@ func (p *OSTreeDeployment) serialize() osbuild.Pipeline {
|
||||||
Timeout: 1,
|
Timeout: 1,
|
||||||
TerminalOutput: []string{"console"},
|
TerminalOutput: []string{"console"},
|
||||||
}
|
}
|
||||||
grubOptions.KernelOptions = strings.Join(kernelOpts, ",")
|
|
||||||
bootloader := osbuild.NewGRUB2Stage(grubOptions)
|
bootloader := osbuild.NewGRUB2Stage(grubOptions)
|
||||||
bootloader.MountOSTree(p.osName, p.commit.Ref, 0)
|
bootloader.MountOSTree(p.osName, p.commit.Ref, 0)
|
||||||
pipeline.AddStage(bootloader)
|
pipeline.AddStage(bootloader)
|
||||||
|
|
|
||||||
|
|
@ -52,8 +52,15 @@ type OSCustomizations struct {
|
||||||
KernelOptionsAppend []string
|
KernelOptionsAppend []string
|
||||||
|
|
||||||
// KernelOptionsBootloader controls whether kernel command line options
|
// KernelOptionsBootloader controls whether kernel command line options
|
||||||
// should be specified in the bootloader configuration. Otherwise they are
|
// should be specified in the bootloader grubenv configuration. Otherwise
|
||||||
// specified in /etc/kernel/cmdline (default).
|
// they are specified in /etc/kernel/cmdline (default).
|
||||||
|
//
|
||||||
|
// NB: The kernel options need to be still specified in /etc/default/grub
|
||||||
|
// under the GRUB_CMDLINE_LINUX variable. The reason is that it is used by
|
||||||
|
// the 10_linux script executed by grub2-mkconfig to override the kernel
|
||||||
|
// options in /etc/kernel/cmdline if the file has older timestamp than
|
||||||
|
// /etc/default/grub.
|
||||||
|
//
|
||||||
// This should only be used for RHEL 8 and CentOS 8 images that use grub
|
// This should only be used for RHEL 8 and CentOS 8 images that use grub
|
||||||
// (non s390x). Newer releases (9+) should keep this disabled.
|
// (non s390x). Newer releases (9+) should keep this disabled.
|
||||||
KernelOptionsBootloader bool
|
KernelOptionsBootloader bool
|
||||||
|
|
@ -558,6 +565,7 @@ func (p *OS) serialize() osbuild.Pipeline {
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
options := osbuild.NewGrub2StageOptionsUnified(pt,
|
options := osbuild.NewGrub2StageOptionsUnified(pt,
|
||||||
|
strings.Join(kernelOptions, " "),
|
||||||
p.kernelVer,
|
p.kernelVer,
|
||||||
p.platform.GetUEFIVendor() != "",
|
p.platform.GetUEFIVendor() != "",
|
||||||
p.platform.GetBIOSPlatform(),
|
p.platform.GetBIOSPlatform(),
|
||||||
|
|
@ -577,7 +585,6 @@ func (p *OS) serialize() osbuild.Pipeline {
|
||||||
if options.UEFI != nil {
|
if options.UEFI != nil {
|
||||||
options.UEFI.Unified = false
|
options.UEFI.Unified = false
|
||||||
}
|
}
|
||||||
options.KernelOptions = strings.Join(kernelOptions, " ")
|
|
||||||
}
|
}
|
||||||
bootloader = osbuild.NewGRUB2Stage(options)
|
bootloader = osbuild.NewGRUB2Stage(options)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -101,6 +101,7 @@ func NewGrub2StageOptions(pt *disk.PartitionTable,
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewGrub2StageOptionsUnified(pt *disk.PartitionTable,
|
func NewGrub2StageOptionsUnified(pt *disk.PartitionTable,
|
||||||
|
kernelOptions string,
|
||||||
kernelVer string,
|
kernelVer string,
|
||||||
uefi bool,
|
uefi bool,
|
||||||
legacy string,
|
legacy string,
|
||||||
|
|
@ -112,9 +113,16 @@ func NewGrub2StageOptionsUnified(pt *disk.PartitionTable,
|
||||||
panic("root filesystem must be defined for grub2 stage, this is a programming error")
|
panic("root filesystem must be defined for grub2 stage, this is a programming error")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NB: We need to set the kernel options regardless of whether we are
|
||||||
|
// writing the command line to grubenv or not. This is because the kernel
|
||||||
|
// options are also written to /etc/default/grub under the GRUB_CMDLINE_LINUX
|
||||||
|
// variable. This is used by the 10_linux script executed by grub2-mkconfig
|
||||||
|
// to override the kernel options in /etc/kernel/cmdline if the file has
|
||||||
|
// older timestamp than /etc/default/grub.
|
||||||
stageOptions := GRUB2StageOptions{
|
stageOptions := GRUB2StageOptions{
|
||||||
RootFilesystemUUID: uuid.MustParse(rootFs.GetFSSpec().UUID),
|
RootFilesystemUUID: uuid.MustParse(rootFs.GetFSSpec().UUID),
|
||||||
Legacy: legacy,
|
Legacy: legacy,
|
||||||
|
KernelOptions: kernelOptions,
|
||||||
WriteCmdLine: common.ToPtr(false),
|
WriteCmdLine: common.ToPtr(false),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2259,7 +2259,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75,modprobe.blacklist=vc4",
|
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75 modprobe.blacklist=vc4",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "centos",
|
"vendor": "centos",
|
||||||
"install": true,
|
"install": true,
|
||||||
|
|
|
||||||
|
|
@ -2611,7 +2611,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75,modprobe.blacklist=vc4",
|
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75 modprobe.blacklist=vc4",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "centos",
|
"vendor": "centos",
|
||||||
"install": true,
|
"install": true,
|
||||||
|
|
|
||||||
|
|
@ -2371,7 +2371,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75,modprobe.blacklist=vc4",
|
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75 modprobe.blacklist=vc4",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "centos",
|
"vendor": "centos",
|
||||||
|
|
|
||||||
|
|
@ -2659,7 +2659,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75,modprobe.blacklist=vc4",
|
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75 modprobe.blacklist=vc4",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "centos",
|
"vendor": "centos",
|
||||||
"install": true,
|
"install": true,
|
||||||
|
|
|
||||||
|
|
@ -4421,6 +4421,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "console=ttyS0,115200n8 console=tty0 net.ifnames=0 rd.blacklist=nouveau nvme_core.io_timeout=4294967295 iommu.strict=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "centos",
|
"vendor": "centos",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -2336,7 +2336,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75,modprobe.blacklist=vc4,rw,coreos.no_persist_ip,ignition.platform.id=metal,$ignition_firstboot",
|
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75 modprobe.blacklist=vc4 rw coreos.no_persist_ip ignition.platform.id=metal $ignition_firstboot",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "centos",
|
"vendor": "centos",
|
||||||
"install": true,
|
"install": true,
|
||||||
|
|
|
||||||
|
|
@ -2720,7 +2720,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75,modprobe.blacklist=vc4,rw,coreos.no_persist_ip,ignition.platform.id=metal,$ignition_firstboot",
|
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75 modprobe.blacklist=vc4 rw coreos.no_persist_ip ignition.platform.id=metal $ignition_firstboot",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "centos",
|
"vendor": "centos",
|
||||||
"install": true,
|
"install": true,
|
||||||
|
|
|
||||||
|
|
@ -4446,6 +4446,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "centos",
|
"vendor": "centos",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -4510,6 +4510,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "console=tty0 console=ttyS0,115200n8 no_timer_check net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "centos",
|
"vendor": "centos",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -4867,6 +4867,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "console=tty0 console=ttyS0,115200n8 no_timer_check net.ifnames=0 debug",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "centos",
|
"vendor": "centos",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -6059,6 +6059,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro console=tty1 console=ttyS0 earlyprintk=ttyS0 rootdelay=300",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "centos",
|
"vendor": "centos",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -5151,6 +5151,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "console=tty0 console=ttyS0,115200n8 no_timer_check net.ifnames=0",
|
||||||
"legacy": "powerpc-ieee1275",
|
"legacy": "powerpc-ieee1275",
|
||||||
"saved_entry": "ffffffffffffffffffffffffffffffff-5.14.0-200.el9.ppc64le",
|
"saved_entry": "ffffffffffffffffffffffffffffffff-5.14.0-200.el9.ppc64le",
|
||||||
"write_cmdline": false,
|
"write_cmdline": false,
|
||||||
|
|
|
||||||
|
|
@ -5492,6 +5492,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "console=tty0 console=ttyS0,115200n8 no_timer_check net.ifnames=0 debug",
|
||||||
"legacy": "powerpc-ieee1275",
|
"legacy": "powerpc-ieee1275",
|
||||||
"saved_entry": "ffffffffffffffffffffffffffffffff-5.14.0-200.el9.ppc64le",
|
"saved_entry": "ffffffffffffffffffffffffffffffff-5.14.0-200.el9.ppc64le",
|
||||||
"write_cmdline": false,
|
"write_cmdline": false,
|
||||||
|
|
|
||||||
|
|
@ -4401,6 +4401,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "console=ttyS0,115200n8 console=tty0 net.ifnames=0 rd.blacklist=nouveau nvme_core.io_timeout=4294967295",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"saved_entry": "ffffffffffffffffffffffffffffffff-5.14.0-214.el9.x86_64",
|
"saved_entry": "ffffffffffffffffffffffffffffffff-5.14.0-214.el9.x86_64",
|
||||||
"write_cmdline": false,
|
"write_cmdline": false,
|
||||||
|
|
|
||||||
|
|
@ -2463,7 +2463,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75,modprobe.blacklist=vc4,rw,coreos.no_persist_ip,ignition.platform.id=metal,$ignition_firstboot",
|
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75 modprobe.blacklist=vc4 rw coreos.no_persist_ip ignition.platform.id=metal $ignition_firstboot",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "centos",
|
"vendor": "centos",
|
||||||
|
|
|
||||||
|
|
@ -2775,7 +2775,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75,modprobe.blacklist=vc4,rw,coreos.no_persist_ip,ignition.platform.id=metal,$ignition_firstboot",
|
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75 modprobe.blacklist=vc4 rw coreos.no_persist_ip ignition.platform.id=metal $ignition_firstboot",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "centos",
|
"vendor": "centos",
|
||||||
"install": true,
|
"install": true,
|
||||||
|
|
|
||||||
|
|
@ -4637,6 +4637,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "net.ifnames=0 biosdevname=0 scsi_mod.use_blk_mq=Y console=ttyS0,38400n8d",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "centos",
|
"vendor": "centos",
|
||||||
|
|
|
||||||
|
|
@ -4777,6 +4777,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "console=tty0 console=ttyS0,115200n8 no_timer_check net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "centos",
|
"vendor": "centos",
|
||||||
|
|
|
||||||
|
|
@ -4830,6 +4830,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "centos",
|
"vendor": "centos",
|
||||||
|
|
|
||||||
|
|
@ -4798,6 +4798,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "console=tty0 console=ttyS0,115200n8 no_timer_check net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "centos",
|
"vendor": "centos",
|
||||||
|
|
|
||||||
|
|
@ -5235,6 +5235,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "console=tty0 console=ttyS0,115200n8 no_timer_check net.ifnames=0 debug",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "centos",
|
"vendor": "centos",
|
||||||
|
|
|
||||||
|
|
@ -6387,6 +6387,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro console=tty1 console=ttyS0 earlyprintk=ttyS0 rootdelay=300",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "centos",
|
"vendor": "centos",
|
||||||
|
|
|
||||||
|
|
@ -4830,6 +4830,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "centos",
|
"vendor": "centos",
|
||||||
|
|
|
||||||
|
|
@ -4860,6 +4860,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -2219,7 +2219,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "modprobe.blacklist=vc4,rw",
|
"kernel_opts": "modprobe.blacklist=vc4 rw",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"install": true,
|
"install": true,
|
||||||
|
|
|
||||||
|
|
@ -4500,6 +4500,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -4844,6 +4844,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -5089,6 +5089,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -4865,6 +4865,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -5328,6 +5328,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0 debug",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -4900,6 +4900,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"saved_entry": "ffffffffffffffffffffffffffffffff-5.18.9-200.fc36.x86_64",
|
"saved_entry": "ffffffffffffffffffffffffffffffff-5.18.9-200.fc36.x86_64",
|
||||||
"write_cmdline": false,
|
"write_cmdline": false,
|
||||||
|
|
|
||||||
|
|
@ -2242,7 +2242,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "modprobe.blacklist=vc4,rw",
|
"kernel_opts": "modprobe.blacklist=vc4 rw",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"install": true,
|
"install": true,
|
||||||
|
|
|
||||||
|
|
@ -4540,6 +4540,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -4988,6 +4988,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -5169,6 +5169,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -5009,6 +5009,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -5472,6 +5472,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0 debug",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -4809,6 +4809,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -5113,6 +5113,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -4850,6 +4850,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -2235,7 +2235,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "modprobe.blacklist=vc4,rw",
|
"kernel_opts": "modprobe.blacklist=vc4 rw",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"install": true,
|
"install": true,
|
||||||
|
|
|
||||||
|
|
@ -4546,6 +4546,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -4842,6 +4842,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -5079,6 +5079,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -4863,6 +4863,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -5326,6 +5326,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0 debug",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -4890,6 +4890,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"saved_entry": "ffffffffffffffffffffffffffffffff-5.19.15-301.fc37.x86_64",
|
"saved_entry": "ffffffffffffffffffffffffffffffff-5.19.15-301.fc37.x86_64",
|
||||||
"write_cmdline": false,
|
"write_cmdline": false,
|
||||||
|
|
|
||||||
|
|
@ -2258,7 +2258,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "modprobe.blacklist=vc4,rw",
|
"kernel_opts": "modprobe.blacklist=vc4 rw",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"install": true,
|
"install": true,
|
||||||
|
|
|
||||||
|
|
@ -4586,6 +4586,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -4954,6 +4954,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -5159,6 +5159,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -4975,6 +4975,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -5438,6 +5438,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0 debug",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -4855,6 +4855,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -5079,6 +5079,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -4858,6 +4858,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -2050,7 +2050,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "modprobe.blacklist=vc4,rw",
|
"kernel_opts": "modprobe.blacklist=vc4 rw",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"install": true,
|
"install": true,
|
||||||
|
|
|
||||||
|
|
@ -4554,6 +4554,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -4850,6 +4850,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -5087,6 +5087,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -4871,6 +4871,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -5334,6 +5334,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0 debug",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -4922,6 +4922,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"saved_entry": "ffffffffffffffffffffffffffffffff-6.2.0-63.fc38.x86_64",
|
"saved_entry": "ffffffffffffffffffffffffffffffff-6.2.0-63.fc38.x86_64",
|
||||||
"write_cmdline": false,
|
"write_cmdline": false,
|
||||||
|
|
|
||||||
|
|
@ -2073,7 +2073,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "modprobe.blacklist=vc4,rw",
|
"kernel_opts": "modprobe.blacklist=vc4 rw",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"install": true,
|
"install": true,
|
||||||
|
|
|
||||||
|
|
@ -4618,6 +4618,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -5074,6 +5074,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -5207,6 +5207,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -5095,6 +5095,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -5558,6 +5558,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0 debug",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -4895,6 +4895,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -5199,6 +5199,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -4946,6 +4946,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -2066,7 +2066,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "modprobe.blacklist=vc4,rw",
|
"kernel_opts": "modprobe.blacklist=vc4 rw",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"install": true,
|
"install": true,
|
||||||
|
|
|
||||||
|
|
@ -4634,6 +4634,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -5026,6 +5026,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -5191,6 +5191,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -5047,6 +5047,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -5510,6 +5510,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0 debug",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -4954,6 +4954,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"saved_entry": "ffffffffffffffffffffffffffffffff-6.3.0-0.rc1.20230308git63355b9884b3.17.fc39.x86_64",
|
"saved_entry": "ffffffffffffffffffffffffffffffff-6.3.0-0.rc1.20230308git63355b9884b3.17.fc39.x86_64",
|
||||||
"write_cmdline": false,
|
"write_cmdline": false,
|
||||||
|
|
|
||||||
|
|
@ -2081,7 +2081,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "modprobe.blacklist=vc4,rw",
|
"kernel_opts": "modprobe.blacklist=vc4 rw",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"install": true,
|
"install": true,
|
||||||
|
|
|
||||||
|
|
@ -4642,6 +4642,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
"unified": true
|
"unified": true
|
||||||
|
|
|
||||||
|
|
@ -5106,6 +5106,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -5239,6 +5239,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -5127,6 +5127,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -5590,6 +5590,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0 debug",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -4919,6 +4919,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -5231,6 +5231,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
"root_fs_uuid": "6e4ff95f-f662-45ee-a82a-bdf44a2d0b75",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
|
"kernel_opts": "ro no_timer_check console=ttyS0,115200n8 biosdevname=0 net.ifnames=0",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "fedora",
|
"vendor": "fedora",
|
||||||
|
|
|
||||||
|
|
@ -1014,7 +1014,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75,modprobe.blacklist=vc4",
|
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75 modprobe.blacklist=vc4",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "redhat",
|
"vendor": "redhat",
|
||||||
"install": true,
|
"install": true,
|
||||||
|
|
|
||||||
|
|
@ -1151,7 +1151,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75,modprobe.blacklist=vc4",
|
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75 modprobe.blacklist=vc4",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "redhat",
|
"vendor": "redhat",
|
||||||
"install": true,
|
"install": true,
|
||||||
|
|
|
||||||
|
|
@ -1056,7 +1056,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75,modprobe.blacklist=vc4",
|
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75 modprobe.blacklist=vc4",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "redhat",
|
"vendor": "redhat",
|
||||||
|
|
|
||||||
|
|
@ -1169,7 +1169,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75,modprobe.blacklist=vc4",
|
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75 modprobe.blacklist=vc4",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "redhat",
|
"vendor": "redhat",
|
||||||
"install": true,
|
"install": true,
|
||||||
|
|
|
||||||
|
|
@ -1014,7 +1014,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75,modprobe.blacklist=vc4",
|
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75 modprobe.blacklist=vc4",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "redhat",
|
"vendor": "redhat",
|
||||||
"install": true,
|
"install": true,
|
||||||
|
|
|
||||||
|
|
@ -1154,7 +1154,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75,modprobe.blacklist=vc4",
|
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75 modprobe.blacklist=vc4",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "redhat",
|
"vendor": "redhat",
|
||||||
"install": true,
|
"install": true,
|
||||||
|
|
|
||||||
|
|
@ -1056,7 +1056,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75,modprobe.blacklist=vc4",
|
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75 modprobe.blacklist=vc4",
|
||||||
"legacy": "i386-pc",
|
"legacy": "i386-pc",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "redhat",
|
"vendor": "redhat",
|
||||||
|
|
|
||||||
|
|
@ -1172,7 +1172,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75,modprobe.blacklist=vc4",
|
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75 modprobe.blacklist=vc4",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "redhat",
|
"vendor": "redhat",
|
||||||
"install": true,
|
"install": true,
|
||||||
|
|
|
||||||
|
|
@ -1014,7 +1014,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75,modprobe.blacklist=vc4",
|
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75 modprobe.blacklist=vc4",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "redhat",
|
"vendor": "redhat",
|
||||||
"install": true,
|
"install": true,
|
||||||
|
|
|
||||||
|
|
@ -1151,7 +1151,7 @@
|
||||||
"options": {
|
"options": {
|
||||||
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
"root_fs_uuid": "fb180daf-48a7-4ee0-b10d-394651850fd4",
|
||||||
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
"boot_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8",
|
||||||
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75,modprobe.blacklist=vc4",
|
"kernel_opts": "luks.uuid=6e4ff95f-f662-45ee-a82a-bdf44a2d0b75 modprobe.blacklist=vc4",
|
||||||
"uefi": {
|
"uefi": {
|
||||||
"vendor": "redhat",
|
"vendor": "redhat",
|
||||||
"install": true,
|
"install": true,
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue