Hi,
i have a dual-boot system which uses GRUB2 to directly load the FreeBSD kernel like this, skipping the loader:
Now i've read https://www.freebsd.org/doc/handbook/boot-introduction.html and there is says:
My Question is if this method of booting is a bad idea since it skips these settings of the "reasonable defaults"?
Is it better to not directly boot the kernel but using the loader?
I am confused
i have a dual-boot system which uses GRUB2 to directly load the FreeBSD kernel like this, skipping the loader:
Bash:
menuentry "FreeBSD" {
insmod ufs2
set root=(hd0,3)
kfreebsd /boot/kernel/kernel
kfreebsd_loadenv /boot/device.hints
set kFreeBSD.vfs.root.mountfrom=ufs:/dev/ada0s3a
}
Now i've read https://www.freebsd.org/doc/handbook/boot-introduction.html and there is says:
The loader will then read /boot/loader.rc, which by default reads in /boot/defaults/loader.conf which sets reasonable defaults for variables
My Question is if this method of booting is a bad idea since it skips these settings of the "reasonable defaults"?
Is it better to not directly boot the kernel but using the loader?
Bash:
menuentry "FreeBSD" {
set root=(hd0,3)
kfreebsd /boot/loader
}
I am confused
