From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
To: Roberto Nibali <rnibali@gmail.com>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 2/5] globalvar: add support to set a value to of all globalvars beginning with 'match'
Date: Fri, 24 Aug 2012 20:51:02 +0200 [thread overview]
Message-ID: <20120824185102.GN6271@game.jcrosoft.org> (raw)
In-Reply-To: <CAONxwYM8=WMNH+gYV-bUZUmpUo0jhPxY0954wbvPdF7Avif0Qw@mail.gmail.com>
On 11:08 Fri 24 Aug , Roberto Nibali wrote:
> Hi
>
> > commands/global.c | 58 ++++++++++++++++++++++++++++++++++++++++++++-------
> > common/globalvar.c | 10 +++++++++
> > include/globalvar.h | 3 +++
> > 3 files changed, 64 insertions(+), 7 deletions(-)
> >
> > diff --git a/commands/global.c b/commands/global.c
> > index de6b13e..cb22e63 100644
> > --- a/commands/global.c
> > +++ b/commands/global.c
> > @@ -24,25 +24,26 @@
> > #include <command.h>
> > #include <globalvar.h>
> > #include <environment.h>
> > +#include <getopt.h>
> >
> > -static int do_global(int argc, char *argv[])
> > +static int do_global_add(int argc, char *argv[])
> > {
> > int ret;
> > char *value;
> >
> > - if (argc != 2)
> > + if (argc != 1)
> > return COMMAND_ERROR_USAGE;
> >
> > - value = strchr(argv[1], '=');
> > + value = strchr(argv[0], '=');
> > if (value) {
> > *value = 0;
> > value++;
> > }
> >
> > - ret = globalvar_add_simple(argv[1]);
> > + ret = globalvar_add_simple(argv[0]);
> >
> > if (value) {
> > - char *name = asprintf("global.%s", argv[1]);
> > + char *name = asprintf("global.%s", argv[0]);
> > ret = setenv(name, value);
> > free(name);
> > }
> > @@ -50,13 +51,56 @@ static int do_global(int argc, char *argv[])
> > return ret ? 1 : 0;
> > }
> >
> > +static int do_global_reset(int argc, char *argv[])
> > +{
> > + char *value;
> > +
> > + if (argc != 1)
> > + return COMMAND_ERROR_USAGE;
> > +
> > + value = strchr(argv[0], '=');
> > + if (value) {
> > + *value = 0;
> > + value++;
> > + } else {
> > + value = "";
> > + }
> > +
> > + globalvar_reset_match(argv[0], value);
> > +
> > + return 0;
> > +}
> > +
> > +static int do_global(int argc, char *argv[])
> > +{
> > + int opt;
> > + int do_reset = 0;
> > +
> > + while ((opt = getopt(argc, argv, "r")) > 0) {
> > + switch (opt) {
> > + case 'r':
> > + do_reset = 1;
> > + break;
> > + }
> > + }
> > +
> > + argc -= optind;
> > + argv += optind;
> > +
> > + if (do_reset)
> > + return do_global_reset(argc, argv);
>
> Since I just read the diff, I might fail to see the big picture,
> however, where's the call to globalvar_reset_match(), is it inside
> do_global_reset()?
no can not
you do this
globalvar toto.l=t
globalvar toto=a
so you expect
global.toto.l=t
global.toto=a
and if we you the reset_match
you will have
global.toto.l=a
global.toto=a
>
> > + return do_global_add(argc, argv);
> > +}
> > +
> > BAREBOX_CMD_HELP_START(global)
> > -BAREBOX_CMD_HELP_USAGE("global <var>[=<value]\n")
> > +BAREBOX_CMD_HELP_USAGE("global [-r] <var>[=<value]\n")
> > BAREBOX_CMD_HELP_SHORT("add a new global variable named <var>, optionally set to <value>\n")
> > +BAREBOX_CMD_HELP_SHORT("-r to set a value to of all globalvars beginning with 'match'")
>
> Shouldn't this be REset instead of set? How about:
>
> "-r to reset all matching global variables to a value."
>
> Maybe giving an example could shed some light on the exact syntax of
> the exact kind of matching you had in mind.
it's realy set a value to a list of params
the text in english is clear
Best Regards,
J.
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2012-08-24 18:50 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-08-24 4:52 [PATCH 0/5] defaultenv-2: add boot sequence Jean-Christophe PLAGNIOL-VILLARD
2012-08-24 4:55 ` [PATCH 1/5] globalbar: add inline when not enabled Jean-Christophe PLAGNIOL-VILLARD
2012-08-24 4:55 ` [PATCH 2/5] globalvar: add support to set a value to of all globalvars beginning with 'match' Jean-Christophe PLAGNIOL-VILLARD
2012-08-24 9:08 ` Roberto Nibali
2012-08-24 18:51 ` Jean-Christophe PLAGNIOL-VILLARD [this message]
2012-08-24 4:55 ` [PATCH 3/5] defaultenv-2: boot use global.linux.bootargs.dyn for dynamic globarvar Jean-Christophe PLAGNIOL-VILLARD
2012-08-24 4:55 ` [PATCH 4/5] defaultenv-2: boot reset linux.bootargs.dyn. and bootm. globarvar Jean-Christophe PLAGNIOL-VILLARD
2012-08-24 4:55 ` [PATCH 5/5] defaultenv-2: add boot sequence Jean-Christophe PLAGNIOL-VILLARD
2012-08-24 7:36 ` Roberto Nibali
2012-08-28 8:26 ` Sascha Hauer
2012-09-01 12:49 ` Jean-Christophe PLAGNIOL-VILLARD
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20120824185102.GN6271@game.jcrosoft.org \
--to=plagnioj@jcrosoft.com \
--cc=barebox@lists.infradead.org \
--cc=rnibali@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox