====== TODOs ====== * Check if differs from install-time ports option * Check release/ver ''src'' and main ''ports'' branches * Check if covers [[bsd:notes:virtualbox]] (adb) ====== make.conf ====== su - ee '/etc/make.conf' CPUTYPE?=skylake DEFAULT_VERSIONS+= ssl=libressl ====== Ports ====== * https://docs.freebsd.org/en/books/handbook/ports/#ports-using-installation-methods ===== Initial ===== su - pkg install 'git' rm -Rf '/usr/ports/'* && git clone --branch 'main' --depth '1' --recurse-submodules 'https://git.FreeBSD.org/ports.git' '/usr/ports' && sync ===== Update ===== su - git -C '/usr/ports' reset --hard git -C '/usr/ports' pull origin 'main' --rebase ====== Source ====== * https://docs.freebsd.org/en/books/handbook/cutting-edge/#updating-src-obtaining-src ===== Initial ===== su - pkg install 'git' rm -Rf '/usr/src/'* && git clone --branch 'releng/14.2' --depth '1' --recurse-submodules 'https://git.FreeBSD.org/src.git' '/usr/src' && sync ===== Update ===== su - git -C '/usr/src' reset --hard git -C '/usr/src' pull origin 'releng/14.2' --rebase ====== drm-61-kmod ====== * https://www.freshports.org/graphics/drm-61-kmod/ * ''pkg remove drm-515-kmod'' and re-run ''make install clean'' * 2024/12/05: Works for Intel UHD 630 on 14.2-R over ''pkg'' one ([[https://forums.freebsd.org/threads/discussion-freebsd-14-2-release-available.95940/page-2#post-682178|post]]) su - cd '/usr/ports/graphics/drm-61-kmod' && make 'reinstall' 'clean' ===== AIO Update ===== **** git -C '/usr/ports' reset --hard && git -C '/usr/ports' pull origin 'main' --rebase && git -C '/usr/src' reset --hard && git -C '/usr/src' pull origin 'releng/14.2' --rebase && cd '/usr/ports/graphics/drm-61-kmod' && make 'reinstall' 'clean' && sync ====== virtualbox-ose-kmod ====== * https://www.freshports.org/emulators/virtualbox-ose-kmod/ su - cd '/usr/ports/emulators/virtualbox-ose-kmod' && make reinstall clean