Related to this howto: https://www.freebsd.org/releases/15.1R/upgrading/
On amd64 you get this:
The fix is to use the backticks:
On amd64 you get this:
Code:
# pkg -oABI=FreeBSD:15:$(uname -p) -oOSVERSION=1501000 upgrade -r FreeBSD-base
Illegal variable name.
# echo $(uname -p)
Illegal variable name.
The fix is to use the backticks:
Code:
# pkg -oABI=FreeBSD:15:`uname -p` -oOSVERSION=1501000 upgrade -r FreeBSD-base