diff options
author | Warner Losh <imp@FreeBSD.org> | 2016-10-11 22:31:45 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2016-10-11 22:31:45 +0000 |
commit | 4b844f8d9920c4380a763b908300830f0eb15f8f (patch) | |
tree | 79472c0f47dcda921bec87d5919ee61aacd86b47 /usr.sbin/efivar/Makefile | |
parent | d49a5ddd040bbaec8d00ba055c342696fd9ee436 (diff) | |
download | src-4b844f8d9920c4380a763b908300830f0eb15f8f.tar.gz src-4b844f8d9920c4380a763b908300830f0eb15f8f.zip |
Add efivar(1) to manipulate EFI variables. It uses a similar command
line interface to the Linux program, as well as adding a number of
useful features to make using it in shell scripts easier (since we
don't have a filesystem to fall back on interacting with).
Differential Revision: https://reviews.freebsd.org/D8128
Reviewed by: kib@, wblock@, Ganael Laplanche
Notes
Notes:
svn path=/head/; revision=307072
Diffstat (limited to 'usr.sbin/efivar/Makefile')
-rw-r--r-- | usr.sbin/efivar/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/usr.sbin/efivar/Makefile b/usr.sbin/efivar/Makefile new file mode 100644 index 000000000000..9a7ac90c820c --- /dev/null +++ b/usr.sbin/efivar/Makefile @@ -0,0 +1,8 @@ +# $FreeBSD$ + +PROG= efivar +MAN= efivar.8 + +LIBADD= efivar + +.include <bsd.prog.mk> |