diff options
author | AKASHI Takahiro | 2019-02-25 15:54:36 +0900 |
---|---|---|
committer | Heinrich Schuchardt | 2019-02-25 12:47:13 +0100 |
commit | 49d81fdfb8c1fc07e54c8f01fe5c5b1125f884cb (patch) | |
tree | 8d124ccf33cef115a949601d0c57a4255cdf6447 /cmd/Makefile | |
parent | ccecc3456a6c538626b34be40249bcf88279efcf (diff) |
cmd: env: add "-e" option for handling UEFI variables
"env [print|set] -e" allows for handling uefi variables without
knowing details about mapping to corresponding u-boot variables.
Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'cmd/Makefile')
-rw-r--r-- | cmd/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Makefile b/cmd/Makefile index a127a995394..b9ee51869d4 100644 --- a/cmd/Makefile +++ b/cmd/Makefile @@ -98,6 +98,7 @@ obj-$(CONFIG_CMD_MTD) += mtd.o obj-$(CONFIG_CMD_MTDPARTS) += mtdparts.o obj-$(CONFIG_CMD_NAND) += nand.o obj-$(CONFIG_CMD_NET) += net.o +obj-$(CONFIG_CMD_NVEDIT_EFI) += nvedit_efi.o obj-$(CONFIG_CMD_ONENAND) += onenand.o obj-$(CONFIG_CMD_OSD) += osd.o obj-$(CONFIG_CMD_PART) += part.o |