mirror of
https://github.com/elektricM/amd-bc250-docs.git
synced 2026-07-16 04:11:44 +00:00
wip: leftover changes from first pass
This commit is contained in:
@@ -96,6 +96,7 @@ This installs:
|
||||
!!!warning "Critical Step"
|
||||
After drivers are installed, you MUST remove nomodeset or the GPU won't work properly.
|
||||
|
||||
**Fedora / Standard GRUB distributions:**
|
||||
```bash
|
||||
sudo nano /etc/default/grub
|
||||
|
||||
@@ -112,6 +113,27 @@ sudo grub2-mkconfig -o /boot/grub2/grub.cfg
|
||||
sudo reboot
|
||||
```
|
||||
|
||||
**Bazzite / Fedora Atomic (rpm-ostree):**
|
||||
|
||||
Bazzite does not use `/etc/default/grub` — editing it directly has no effect. Use `rpm-ostree kargs` instead:
|
||||
|
||||
```bash
|
||||
# Remove nomodeset if it was added
|
||||
rpm-ostree kargs --delete-if-present="nomodeset"
|
||||
|
||||
# Reboot
|
||||
systemctl reboot
|
||||
```
|
||||
|
||||
Alternatively, create or edit `/etc/default/grub.d/user.cfg` for persistent kernel parameter changes:
|
||||
|
||||
```bash
|
||||
echo 'GRUB_CMDLINE_LINUX_DEFAULT="quiet"' | sudo tee /etc/default/grub.d/user.cfg
|
||||
```
|
||||
|
||||
!!!info "Bazzite Usually Doesn't Need nomodeset"
|
||||
Bazzite typically boots correctly without nomodeset. If you didn't add it, you can skip this step.
|
||||
|
||||
### Step 6: Verify Installation
|
||||
|
||||
Check that everything works:
|
||||
|
||||
Reference in New Issue
Block a user