On Sun, Aug 9, 2015 at 10:38 AM, pstern <[email protected]> wrote:
...
> I saw that pkg_add is discouraged at the bottom of the man page for
> fw_update.
>
> Trying local update
>
> # ls -la /etc/firmware/*.tgz
> -rw-r--r-- 1 root wheel 1224091 Aug 8 15:08
> /etc/firmware/radeondrm-firmware-20131002p0.tgz
> # fw_update -n -v -p /etc/firmware/radeondrm-firmware-20131002p0.tgz
-p path
Use the firmware found at path, being either a local directory or
a URL, instead of the default location.
You gave it the path to the file, not the path to the directory where
it should look for firmware packages. Also, putting the package file
in /etc/fireware/ is just confusing; move it elsewhere and add it from
that directory:
# mv /etc/firmware/radeondrm-firmware-20131002p0.tgz /root
# fw_update -n -v /root
Philip Guenther