User Tools

Site Tools


bsd:notes:ports_temp

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
bsd:notes:ports_temp [2024/12/05 15:54] – created Sean Rhonebsd:notes:ports_temp [2024/12/09 21:19] (current) Sean Rhone
Line 1: Line 1:
 +====== 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'
 +
 +<code>
 +CPUTYPE?=skylake
 +DEFAULT_VERSIONS+= ssl=libressl</code>
 +
 +====== Ports ======
 +
   * https://docs.freebsd.org/en/books/handbook/ports/#ports-using-installation-methods   * https://docs.freebsd.org/en/books/handbook/ports/#ports-using-installation-methods
  
-====== Initial ======+===== Initial =====
  
   su -   su -
Line 9: Line 27:
   rm -Rf '/usr/ports/'* && git clone --branch 'main' --depth '1' --recurse-submodules 'https://git.FreeBSD.org/ports.git' '/usr/ports' && sync   rm -Rf '/usr/ports/'* && git clone --branch 'main' --depth '1' --recurse-submodules 'https://git.FreeBSD.org/ports.git' '/usr/ports' && sync
  
-====== Update ======+===== Update =====
  
   su -   su -
Line 17: Line 35:
   git -C '/usr/ports' pull origin 'main' --rebase   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
  
  
  
/srv/www/wiki/data/attic/bsd/notes/ports_temp.1733432094.txt.gz · Last modified: by Sean Rhone