Digging a bit deeper, I noticed this in 'freebsd-update.sh':--- # Return 0 if the system is managed using pkgbase, 1 otherwise.check_pkgbase(){ # Packaged base requires that pkg is bootstrapped. if ! pkg -N -r ${BASEDIR} >/dev/null 2>/dev/null; then return 1 fi # uname(1) is used by pkg to determine ABI, so it should exist. # If it comes from a package then this system uses packaged base. if ! pkg -r ${BASEDIR} which /usr/bin/uname >/dev/null; then return 1 fi return 0--- So, pkg bootstrapped and 'uname' from package. https://github.com/freebsd/freebsd-src/blob/main/usr.sbin/freebsd-update/freebsd-update.sh