[U-Boot] [PATCH v3] cmd_bootm: Add command line arguments to Plan 9

2013-06-10 Thread Steven Stallion
: Steven Stallion --- Changes for v2: - Corrected checkpatch misses - Refactored common code to copy command line arguments - Added documentation for odd Plan 9 behavior Changes for v3: - Corrected patch Subject common/cmd_bootm.c | 36 +--- doc

[U-Boot] [PATCH v2] Add command line arguments to Plan 9

2013-06-10 Thread Steven Stallion
: Steven Stallion --- Changes for v2: - Corrected checkpatch misses - Refactored common code to copy command line arguments - Added documentation for odd Plan 9 behavior common/cmd_bootm.c | 36 +--- doc/README.plan9 | 18 ++ 2 files

Re: [U-Boot] [PATCH] cmd_bootm: Add command line arguments to Plan 9

2013-06-09 Thread Steven Stallion
On Sun, Jun 9, 2013 at 12:52 AM, Wolfgang Denk wrote: > This is basically the same code (with only irrelevant differences) as > used by do_bootm_netbsd(). Can you please > > 1) factor out this common code, and > 2) documnt the behaviour > ? Will do. > By the way: this patch still triggers two

[U-Boot] [PATCH] cmd_bootm: Add command line arguments to Plan 9

2013-06-08 Thread Steven Stallion
: Steven Stallion --- common/cmd_bootm.c | 19 +++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 05130b6..5c62271 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -1533,6 +1533,7 @@ static int do_bootm_plan9

Re: [U-Boot] [PATCH] cmd_bootm: Add command line arguments to Plan 9

2013-06-08 Thread Steven Stallion
On Thu, Jun 6, 2013 at 4:41 PM, Steven Stallion wrote: > This patch introduces support for command line arguments to Plan 9. > Plan 9 generally dedicates a small region of kernel memory (known > as CONFADDR) for runtime configuration. A new environment variable > named confaddr was i

Re: [U-Boot] [PATCH] cmd_bootm: Add command line arguments to Plan 9

2013-06-07 Thread Steven Stallion
On Fri, Jun 7, 2013 at 2:57 PM, Wolfgang Denk wrote: > Dear Steven, > > In message > you > wrote: >> >> Hmm. Are you arguing against supporting command line arguments to bootm, or >> that bootm should copy these arguments to bootargs prior to boot? This has >> actually been very useful to test

Re: [U-Boot] [PATCH] cmd_bootm: Add command line arguments to Plan 9

2013-06-07 Thread Steven Stallion
On Fri, Jun 7, 2013 at 1:16 AM, Wolfgang Denk wrote: > In message ceumhu8u4enqyj3wt3rqyvdzatw...@mail.gmail.com> you wrote: > > > > > Please make this code configurable, so that people who never intend to > > > use Plan 9 do not suffer from the increased code size. > > > > This is already done,

[U-Boot] [PATCH] cmd_bootm: Add command line arguments to Plan 9

2013-06-06 Thread Steven Stallion
: Steven Stallion --- common/cmd_bootm.c | 19 +++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 05130b6..5c62271 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -1533,6 +1533,7 @@ static int do_bootm_plan9

[U-Boot] [PATCH] README: Document support for Plan 9

2013-06-06 Thread Steven Stallion
Signed-off-by: Steven Stallion --- README |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README b/README index b1b3e17..9782bb8 100644 --- a/README +++ b/README @@ -4636,9 +4636,9 @@ details; basically, the header defines the following image properties: * Target

[U-Boot] [PATCH v2] image: Add support for Plan 9

2013-03-20 Thread Steven Stallion
Signed-off-by: Steven Stallion Cc: Tom Rini --- This patch adds support for Plan 9 from Bell Labs kernel images. Changes for v2: - Combined previous patches for image and bootm common/cmd_bootm.c| 39 +++ common/image.c| 1 + include

[U-Boot] [PATCH] bootm: Add support for Plan 9

2013-03-17 Thread Steven Stallion
>From 902b728b8bcacecf9e2ea7854cc1e3777c2fd4e3 Mon Sep 17 00:00:00 2001 Apologies for the second patch; I did not realize at the time that modifications were needed for bootm to function correctly. --- common/cmd_bootm.c| 39 +++ include/config_default

[U-Boot] [PATCH] image: Add support for Plan 9

2013-03-17 Thread Steven Stallion
>From 2c6086251774e6dcdba8ee9a83c8b5cbe2a643f4 Mon Sep 17 00:00:00 2001 This patch adds support for Plan 9 to image.c; primarily a cosmetic change when booting Plan 9 kernels using U-Boot. --- common/image.c | 1 + include/image.h | 1 + 2 files changed, 2 insertions(+) diff --git a/common/ima