"For systems that boot via BIOS or UEFI CSM and use the GPT partition scheme, bootstrap upgrades are optional unless a ZFS root pool is upgraded (which is discouraged). "
( https://www.freebsd.org/releases/15.1R/upgrading/ )
Can you confirm that this means I do not need to do a bootstrap upgrade?
This is my relevant system info, first the boot method:
And next, the partition info:
Based on that information, I could theoretically upgrade the bootcode with the following command:
And then doing
However, this is optional, correct?
I have been using FreeBSD for over 25 years to host my personal websites, but I have never seen something like this to do between minor version upgrades, hence my caution.
Thank you very much.
( https://www.freebsd.org/releases/15.1R/upgrading/ )
Can you confirm that this means I do not need to do a bootstrap upgrade?
This is my relevant system info, first the boot method:
# sysctl machdep.bootmethod
machdep.bootmethod: BIOS
And next, the partition info:
# gpart show
=> 40 3565158320 vtbd0 GPT (1.7T)
40 1024 1 freebsd-boot (512K)
1064 3556768768 2 freebsd-ufs (1.7T)
3556769832 8388528 3 freebsd-swap (4.0G)
Based on that information, I could theoretically upgrade the bootcode with the following command:
gpart bootcode -b /boot/pmbr -p /boot/gptboot -i 1 vtbd0
And then doing
shutdown -r nowHowever, this is optional, correct?
I have been using FreeBSD for over 25 years to host my personal websites, but I have never seen something like this to do between minor version upgrades, hence my caution.
Thank you very much.