diff options
author | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2010-01-07 03:24:05 +0000 |
---|---|---|
committer | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2010-01-07 03:24:05 +0000 |
commit | 1912e057c355e71915013fcdf1a04146874ca7ed (patch) | |
tree | b6a0fe549c2e282938dc500c5e186f7724435af0 /Makefile | |
parent | bd47ad9604da02d2b50f9913ed5e6007fabb0f19 (diff) | |
download | flashrom-1912e057c355e71915013fcdf1a04146874ca7ed.zip flashrom-1912e057c355e71915013fcdf1a04146874ca7ed.tar.gz |
Move the CLI related functions main() and cli_usage() to cli_classic.c
And rename them accordingly. For now, main() just calls cli_classic(),
but alternative frontends can be switched in main().
Annotate remaining help texts with CLI dependency inside flashrom.c with
a FIXME comment.
Now people can go and create different frontends and be happy. Please
note that any other frontend will have to sort of duplicate the probing
code in cli_classic.c. Refactoring that part of the code is possible,
but not easy because we still want to print instructive help messages
for users.
Corresponding to flashrom svn r833.
Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: Sean Nelson <audiohacked@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ CHIP_OBJS = jedec.o stm50flw0x0x.o w39v080fa.o sharplhf00l04.o w29ee011.o \ LIB_OBJS = layout.o -CLI_OBJS = flashrom.o print.o +CLI_OBJS = flashrom.o cli_classic.o print.o PROGRAMMER_OBJS = udelay.o programmer.o |