Handbook chapter 24: https://docs.freebsd.org/en/books/handbook/cutting-edge/
24.5.1. Quick Start:
24.5.4. Building from source:
I see
It would also seem that
24.5.1. Quick Start:
Code:
# git pull /usr/src
check /usr/src/UPDATING
# cd /usr/src
# make -j4 buildworld
# make -j4 kernel
# shutdown -r now
# etcupdate -p
# cd /usr/src
# make installworld
# etcupdate -B
# shutdown -r now
24.5.4. Building from source:
Code:
# cd /usr/src
# make buildworld
# make buildkernel
I see
make kernel
and make buildkernel
. What's up with that? Is this a simple mistake and I can submit a PR or is there more to it?It would also seem that
make installkernel
is missing in the Quick Start section.