diff options
author | Furquan Shaikh <furquan@google.com> | 2016-05-19 16:12:16 -0700 |
---|---|---|
committer | Furquan Shaikh <furquan@google.com> | 2016-05-30 23:51:42 +0200 |
commit | 233f1b6a386995038e3d6d72db80b4a325bbe39b (patch) | |
tree | ed719ce1345aa355bda066b8e305e3c7f7a6c674 /util/cbfstool/Makefile | |
parent | 97d56fa1a2b2103ca6cf01cf45d0b9bf123cbef5 (diff) | |
download | coreboot-233f1b6a386995038e3d6d72db80b4a325bbe39b.tar.xz |
ifwitool: Add new tool for managing IFWI images
- Supports following operations:
1. add raw/dir sub-partition
2. extract raw/dir sub-partition
3. print info
4. delete raw sub-partition
5. replace raw/dir sub-partition
Change-Id: I683a0ab13cc50eb60eecca34db4a8ffefc8dccbd
Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: https://review.coreboot.org/14896
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'util/cbfstool/Makefile')
-rw-r--r-- | util/cbfstool/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/cbfstool/Makefile b/util/cbfstool/Makefile index 61a1a63257..f49da3ed90 100644 --- a/util/cbfstool/Makefile +++ b/util/cbfstool/Makefile @@ -10,6 +10,7 @@ OBJCOPY ?= objcopy all: $(objutil)/cbfstool/cbfstool \ $(objutil)/cbfstool/fmaptool \ $(objutil)/cbfstool/rmodtool \ + $(objutil)/cbfstool/ifwitool \ .PHONY: clean clean: @@ -17,6 +18,7 @@ clean: $(RM) $(objutil)/cbfstool/cbfstool $(cbfsobj) $(RM) $(objutil)/cbfstool/fmaptool $(fmapobj) $(RM) $(objutil)/cbfstool/rmodtool $(rmodobj) + $(RM) $(objutil)/cbfstool/ifwitool $(ifwiobj) linux_trampoline.c: linux_trampoline.S rm -f linux_trampoline.c |