I'm booting from Grub2 and loading FreeBSD via this menuentry:-
Here I specify (hd0,4) to load FreeBSD although I also have a second USB disk. Now when FreeBSD boots da0 is assigned to the second disk and the FreeBSD disk is da1. How do I know which device ID FreeBSD will assign to which disk?
Code:
menuentry "FreeBSD 12.2-RELEASE amd64 ***** STABLE default - use for XWindows ****** !" {
insmod ufs2
insmod part_gpt
set root=(hd0,4)
kfreebsd /boot/loader
}
Here I specify (hd0,4) to load FreeBSD although I also have a second USB disk. Now when FreeBSD boots da0 is assigned to the second disk and the FreeBSD disk is da1. How do I know which device ID FreeBSD will assign to which disk?