As the title says. I’ve no idea where anything is and how it’s used. Is this documented somewhere accessable or is it scurry through docs from first principle that’s the way? If it had been grub I’d been done yesterday.
So, how do I add and apply boot parameters? I’m using an nvme with /boot on the mmc. Just changing the conf in /boot/loader/entries wasn’t enough and I’m not sure which command that is the equivalent of a grubinstall for, I’m guessing, the files in /usr/share/reform-tools-machines/.
I want to add initcall_blacklist=algif_aead_init from: cve-details
While you can do that and it will affect the next boot, the next time you install or upgrade your kernel, u-boot-update will get triggered and overwrite everything you had written in /boot/extlinux/extlinux.conf. It says that at the top of the file:
## /boot/extlinux/extlinux.conf
##
## IMPORTANT WARNING
##
## The configuration of this file is generated automatically.
## Do not edit this file manually, use: u-boot-update
If you then open the man page of u-boot-update you will see that to permanently add options you can edit /etc/default/u-boot or add a fragment to a file in /etc/u-boot-menu/conf.d/. The variable you may want to update is called U_BOOT_PARAMETERS. It is documented in the man page of u-boot-update.