Hi! What worked for me after leaving both repositories on "latest" was running a specific upgrade for FreeBSD-kmods.
Even though I gave the kmods repo higher priority (priority 50), it always chooses the package available for 14.2 in the FreeBSD repo.
/etc/pkg/FreeBSD.conf
result:
Regards
sudo pkg -6 upgrade -r FreeBSD-kmods
Even though I gave the kmods repo higher priority (priority 50), it always chooses the package available for 14.2 in the FreeBSD repo.
/etc/pkg/FreeBSD.conf
Code:
#
# To disable this repository, instead of modifying or removing this file,
# create a /usr/local/etc/pkg/repos/FreeBSD.conf file:
#
# mkdir -p /usr/local/etc/pkg/repos
# echo "FreeBSD: { enabled: no }" > /usr/local/etc/pkg/repos/FreeBSD.conf
#
FreeBSD: {
# url: "pkg+https://pkg.FreeBSD.org/${ABI}/quarterly",
url: "pkg+https://pkg.FreeBSD.org/${ABI}/latest",
mirror_type: "srv",
signature_type: "fingerprints",
fingerprints: "/usr/share/keys/pkg",
enabled: yes
}
FreeBSD-kmods: {
# url: "pkg+https://pkg.FreeBSD.org/${ABI}/kmods_quarterly_${VERSION_MINOR}",
url: "pkg+https://pkg.FreeBSD.org/${ABI}/kmods_latest_${VERSION_MINOR}",
mirror_type: "srv",
signature_type: "fingerprints",
fingerprints: "/usr/share/keys/pkg",
enabled: yes
priority: 50
}
result:
Code:
#> sudo pkg info |grep -i virtualbox
virtualbox-ose-71-7.1.10_2 General-purpose full virtualizer for x86 hardware
virtualbox-ose-kmod-71-7.1.10.1403000 VirtualBox kernel module for FreeBSD
Regards