diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2007-12-22 17:47:22 +0200 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2007-12-22 17:50:34 +0200 |
commit | 30fda17fbb469aab410dce57a2c16f5e48d380a4 (patch) | |
tree | 25f2fd238baf4a7726bc4a30809028ab53ef397d /ubi-utils/Makefile | |
parent | 8a8e8101d50ed702d6c45959c8b3f71fdb1e811f (diff) |
ubi-utils: add ubiupdate
Add an 'ubiupdate' utility which is basically a changed and cleaned-up
version of ubiupdatevol. It is also consistent with other ubi tools.
ubiupdatevol should go away, because it has features which should not
be present in tools for end users. If one needs debugging capabilities,
he should create a separate program.
So, I do not delete ubiupdatevol, but it will be moved somwthere later.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'ubi-utils/Makefile')
-rw-r--r-- | ubi-utils/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ubi-utils/Makefile b/ubi-utils/Makefile index ee4956f..6a0391f 100644 --- a/ubi-utils/Makefile +++ b/ubi-utils/Makefile @@ -14,7 +14,7 @@ CFLAGS := -I./inc -I./src -I$(KERNELHDR) $(OPTFLAGS) -Werror \ -Wwrite-strings -W -std=gnu99 -DPACKAGE_VERSION=\"1.0\" PERLPROGS = mkpfi ubicrc32.pl -TARGETS = ubiupdatevol ubimkvol ubirmvol pfiflash pddcustomize ubimirror \ +TARGETS = ubiupdate ubimkvol ubirmvol pfiflash pddcustomize ubimirror \ bin2nand nand2bin ubigen mkbootenv unubi pfi2bin ubicrc32 ubinfo vpath %.c ./src @@ -36,7 +36,7 @@ clean: ubinfo: ubinfo.o common.o libubi.o $(CC) $(LDFLAGS) -o $@ $^ -ubiupdatevol: ubiupdatevol.o error.o libubi.o +ubiupdate: ubiupdate.o common.o libubi.o $(CC) $(LDFLAGS) -o $@ $^ ubimkvol: ubimkvol.o common.o libubi.o |