From: Thierry Reding <thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: Stephen Warren <swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
Subject: Re: [cbootimage PATCH] Implement --soc command-line option
Date: Wed, 28 Aug 2013 08:35:20 +0200 [thread overview]
Message-ID: <20130828063519.GA5141@ulmo> (raw)
In-Reply-To: <1377628344-24984-1-git-send-email-swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
[-- Attachment #1: Type: text/plain, Size: 2915 bytes --]
On Tue, Aug 27, 2013 at 12:32:24PM -0600, Stephen Warren wrote:
> From: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
>
> Implement command-line option "-s tegra20" and "--soc tegra20". These
> mirror the existing -t/--tegra option, but require the full chip name
> (tegra20) rather than an abbreviated name (-t20). This is more consistent
> with just about everything else upstream.
>
> Suggested-by: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
> Signed-off-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
> ---
> src/cbootimage.c | 20 ++++++++++++++++----
> 1 file changed, 16 insertions(+), 4 deletions(-)
>
> diff --git a/src/cbootimage.c b/src/cbootimage.c
> index 336b169..259e6e7 100644
> --- a/src/cbootimage.c
> +++ b/src/cbootimage.c
> @@ -48,6 +48,7 @@ struct option cbootcmd[] = {
> {"generate", 1, NULL, 'g'},
> {"tegra", 1, NULL, 't'},
> {"odmdata", 1, NULL, 'o'},
> + {"soc", 1, NULL, 's'},
> {0, 0, 0, 0},
> };
>
> @@ -68,9 +69,12 @@ usage(void)
> printf(" -d, --debug Output debugging information.\n");
> printf(" -gbct Generate the new bct file.\n");
> printf(" -o<ODM_DATA> Specify the odm_data(in hex).\n");
> - printf(" [-t20|-t30|-t114|-t124]\n");
> - printf(" Select one of the possible target devices,\n");
> - printf(" -t20 if unspecified.\n");
> + printf(" -t|--tegra NN Select target device. Must be one of:\n");
> + printf(" 20, 30, 114, 124.\n");
> + printf(" Default: 20. This option is deprecated\n");
> + printf(" -s|--soc tegraNN Select target device. Must be one of:\n");
> + printf(" tegra20, tegra30, tegra114, tegra124.\n");
> + printf(" Default: tegra20.\n");
> printf(" configfile File with configuration information\n");
> printf(" imagename Output image name\n");
> }
> @@ -82,7 +86,7 @@ process_command_line(int argc, char *argv[], build_image_context *context)
>
> context->generate_bct = 0;
>
> - while ((c = getopt_long(argc, argv, "hdg:t:o:", cbootcmd, NULL)) != -1) {
> + while ((c = getopt_long(argc, argv, "hdg:t:o:s:", cbootcmd, NULL)) != -1) {
> switch (c) {
> case 'h':
> help_only = 1;
> @@ -100,6 +104,14 @@ process_command_line(int argc, char *argv[], build_image_context *context)
> return -EINVAL;
> }
> break;
> + case 's':
> + if (strncmp("tegra", optarg, 5)) {
> + printf("Unsupported chipname!\n");
> + usage();
> + return -EINVAL;
> + }
> + optarg += 5;
> + /* Deliberate all-through */
"fall-through"? =)
Other than that:
Reviewed-by: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]
next prev parent reply other threads:[~2013-08-28 6:35 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-27 18:32 [cbootimage PATCH] Implement --soc command-line option Stephen Warren
[not found] ` <1377628344-24984-1-git-send-email-swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2013-08-28 6:35 ` Thierry Reding [this message]
2013-08-28 14:54 ` Stephen Warren
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=20130828063519.GA5141@ulmo \
--to=thierry.reding-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
--cc=linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org \
--cc=swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org \
/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