diff options
author | Marek Vasut <marex@denx.de> | 2014-03-14 05:00:14 +0100 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-03-28 15:06:29 -0400 |
commit | b97241b3125a86b7fd77dc2357446d3346fef929 (patch) | |
tree | 7db3d82eb7a7301f78d91e8cff5cea42f361f52a /board/matrix_vision/mvblm7 | |
parent | 82b9547387389cc4147596cb45609bf29d3fdbdb (diff) |
kbuild: Rename UIMAGE to MKIMAGE
U-Boot uses the 'mkimage' tool to produce various image types,
not only uImage image type. Rename the invocation name from
UIMAGE to MKIMAGE.
The following command was used to do the replacement:
git grep 'quiet_cmd_mkimage.* = UIMAGE' | cut -d : -f 1 | \
xargs -i sed -i "s@\(quiet_cmd_mkimage\)\(.*\) = UIMAGE @\1\2 = MKIMAGE@" {}
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Tom Rini <trini@ti.com>
Cc: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'board/matrix_vision/mvblm7')
-rw-r--r-- | board/matrix_vision/mvblm7/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/matrix_vision/mvblm7/Makefile b/board/matrix_vision/mvblm7/Makefile index b5987fde39a..9ed2837a788 100644 --- a/board/matrix_vision/mvblm7/Makefile +++ b/board/matrix_vision/mvblm7/Makefile @@ -8,7 +8,7 @@ obj-y := mvblm7.o pci.o fpga.o extra-y := bootscript.img -quiet_cmd_mkimage = UIMAGE $@ +quiet_cmd_mkimage = MKIMAGE $@ cmd_mkimage = $(objtree)/tools/mkimage $(MKIMAGEFLAGS_$(@F)) -d $< $@ \ $(if $(KBUILD_VERBOSE:1=), >/dev/null) |