Welcome to Fedora @geev03
There where problems with some raspberry boards:
Try the nomodset argument as described as workaround on the link above.
Workarounds
The bug can be worked around by booting with
nomodeset
kernel argument.Fresh installation
You can add
--args "nomodeset"
argument to the arm-image-installer, like this:sudo arm-image-installer --image=</path/to/fedora_image> --target=<RPi_Version> --media=/dev/<sd_card_device> --resizefs --args "nomodeset"
Adjusting an existing system
If your system is already installed and don’t want to reinstall it, you can edit the boot entry in the bootloader. In the bootloader, press Ctrl+e to edit the currently selected boot option, find the
kernel
line and addnomodeset
at the end of the line. Finally, boot the system by pressing Ctrl+x. This modification will only apply to the current boot.If you want to apply the boot modification permanently, edit
/etc/default/grub
, addnomodeset
to lineGRUB_CMDLINE_LINUX=
, and then run:sudo grub2-mkconfig -o /etc/grub2.cfg