Annotation of openbsd/fw_update/fw_install.8, Revision 1.6
1.1 afresh1 1: .\" $OpenBSD$
2: .\"
3: .\" Copyright (c) 2021 Andrew Hewus Fresh <afresh1@openbsd.org>
4: .\"
5: .\" Permission to use, copy, modify, and distribute this software for any
6: .\" purpose with or without fee is hereby granted, provided that the above
7: .\" copyright notice and this permission notice appear in all copies.
8: .\"
9: .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10: .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11: .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12: .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13: .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14: .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15: .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16: .\"
1.4 afresh1 17: .Dd $Mdocdate: December 23 2021 $
1.1 afresh1 18: .Dt FW_INSTALL 8
19: .Os
20: .Sh NAME
21: .Nm fw_install
22: .Nd download and install non-free firmware packages
23: .Sh SYNOPSIS
24: .Nm
1.3 afresh1 25: .Op Fl d | D | L
1.5 afresh1 26: .Op Fl av
1.6 ! afresh1 27: .Op Fl p Ar path
1.1 afresh1 28: .Op Ar driver | file ...
29: .Sh DESCRIPTION
30: The
31: .Nm
32: utility downloads and installs non-free firmware packages.
33: It is designed as a version of
34: .Xr fw_update 1
35: that can run in the limited environment of the installer.
36: .Pp
37: The options are as follows:
38: .Bl -tag -width Ds
1.5 afresh1 39: .It Fl a
40: Detect firmware to be installed or deleted.
41: Cannot be used when specifying names.
42: Automatically enabled when installing if no specific names are passed.
1.3 afresh1 43: .It Fl d
44: Delete the specified firmware.
45: Required additional arguments are a list of full package or driver names.
1.1 afresh1 46: .It Fl D
47: Download firmware packages to the current working directory,
48: without installing them.
49: .It Fl L
50: Install firmware from a local copy in the current directory.
1.6 ! afresh1 51: .It Fl p Ar path
! 52: Use the firmware found at package repository
! 53: .Ar path ,
! 54: being either a local directory or a URL,
! 55: instead of the default location.
1.2 afresh1 56: .It Fl v
57: Enable verbose mode.
1.4 afresh1 58: .El
1.1 afresh1 59: .Pp
60: Additional arguments are taken as
61: device names for which filenames will be looked up
62: or as filenames of firmware packages to be installed.
63: If no additional arguments are given,
64: .Nm
65: searches
66: .Xr dmesg 8
67: for
68: .Pa firmware_patterns
69: to find matching drivers.
70: .Sh ENVIRONMENT
71: .Bl -tag -width DESTDIRXXX
72: .It Ev DESTDIR
73: The root of the system to install into.
74: .El
75: .Sh FILES
76: .Bl -tag -width Ds
77: .It Pa ${DESTDIR}/usr/share/misc/firmware_patterns
78: A list of patterns used to detect needed firmware from the
79: .Xr dmesg 8 .
80: .It Pa ${DESTDIR}/etc/signify/openbsd-XX-fw.pub
81: Used with
82: .Xr signify 1
83: to verify downloaded firmware files.
84: .El
85: .Sh EXIT STATUS
86: .Ex -std
87: .\" .Sh EXAMPLES
88: .Sh SEE ALSO
89: .Xr fw_update 1 ,
90: .Xr dmesg 8
91: .\" .Sh STANDARDS
92: .Sh AUTHORS
93: The
94: .Nm
95: program was designed and written by
96: .An Andrew Hewus Fresh Aq Mt afresh1@openbsd.org
97: as a limited version of
98: .Xr fw_update 1 .
99: .\" .Sh CAVEATS
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>