HoloISO / issuetracker

Issuetracker
4 stars 2 forks source link

Feature request: Regenerate grub.cfg #12

Closed vlolteanu closed 4 months ago

vlolteanu commented 4 months ago

It would be nice to have a "kosher" way of regenerating grub.conf, in case the kernel command line needs to be changed. Currently, /boot is read-only.

(My particular use case is that I have a flaky Bluetooth controller, and I need to pass pci=nommconf so my devices pair/connect consistently.)

theVakhovskeIsTaken commented 4 months ago

@vlolteanu sudo genquirks --grub_additional_options "pci=nommcomf" && steamos-readonly disable && holoiso-grub-update

this will persist thru updates

vlolteanu commented 4 months ago

Thanks!