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

2013-06-10 Thread Steven Stallion
-by: Steven Stallion sstall...@gmail.com --- 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

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

2013-06-10 Thread Steven Stallion
-by: Steven Stallion sstall...@gmail.com --- 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

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 w...@denx.de 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

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 sstall...@gmail.com 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

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

2013-06-08 Thread Steven Stallion
-by: Steven Stallion sstall...@gmail.com --- 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

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 w...@denx.de wrote: In message CAGGHmKHmLAd_85SgHyC= 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.

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 w...@denx.de wrote: Dear Steven, In message cagghmkh2nsdoqjbrucb5xjsjcuoyfco6cz8msjtxdshh6p6...@mail.gmail.com you wrote: Hmm. Are you arguing against supporting command line arguments to bootm, or that bootm should copy these arguments to

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

2013-06-06 Thread Steven Stallion
Signed-off-by: Steven Stallion sstall...@gmail.com --- 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

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

2013-06-06 Thread Steven Stallion
-by: Steven Stallion sstall...@gmail.com --- 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

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

2013-03-20 Thread Steven Stallion
Signed-off-by: Steven Stallion sstall...@gmail.com Cc: Tom Rini tr...@ti.com --- 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

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

2013-03-18 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 +++

[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