Stefan,
On Fri, 2013-07-12 at 07:30 -0400, Stefan Agner wrote:
> Am 2013-07-11 15:54, schrieb Justin Waters:
> > Give the user the ability to disable NAND support by defining
> > CONFIG_NO_NAND. This will allow custom hardware to easily support
> > this configuration.
>
Many modern U-Boot ports enable command line editing and
a history buffer. The am335x_evm configuration is fairly
comprehensive as it is, so a few extra kb should not be
noticable, and it adds a very convenient feature.
Signed-off-by: Justin Waters
---
include/configs/am335x_evm.h |3 +++
1
Some boards, such as the BeagleBone Black, have an eMMC chip intstead
of NAND. We can use the eMMC boot partition to store the environment,
since it isn't used for anything else. This allows us to have a
configurable environment on those boards.
Signed-off-by: Justin Waters
---
include/co
The BeagleBone Black differs from the other AM335x boards in a few
significant ways, so it makes sense to create a custom configuration
for it. In particular, it uses eMMC instead of NAND flash.
Signed-off-by: Justin Waters
---
boards.cfg |1 +
1 file changed, 1 insertion(+)
diff --git a
* Fix missing FDT load
Signed-off-by: Justin Waters
---
include/configs/am335x_evm.h | 42 ++
1 file changed, 22 insertions(+), 20 deletions(-)
diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h
index ea68b57..0df0e7a 100644
--- a
Give the user the ability to disable NAND support by defining
CONFIG_NO_NAND. This will allow custom hardware to easily support
this configuration.
Signed-off-by: Justin Waters
---
boards.cfg | 16 +++---
include/configs/am335x_evm.h | 49
of the other changes
* Reversed the NAND logic- rather than using a new token, NO_NAND,
I simply define NAND in the configurations for the other boards.
* Fixed some bugs introduced by my mmcboot modifications
Justin Waters (6):
am335x_evm: Make NAND support modular
am335x_evm: Add command
This rule catches images such as MLO.byteswap
Signed-off-by: Justin Waters
---
.gitignore |2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.gitignore b/.gitignore
index 771b860..d1282e7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -24,7 +24,7 @@
# Top-level generic files
Tom,
On Tue, 2013-07-09 at 15:47 -0400, Tom Rini wrote:
> On Tue, Jul 09, 2013 at 03:00:05PM -0400, Justin Waters wrote:
>
> > There are a number of differences between the BeagleBone Black
> > and other AM335x boards that require some modification of the
> > default AM33
Tom,
On Tue, 2013-07-09 at 15:44 -0400, Tom Rini wrote:
> On Tue, Jul 09, 2013 at 03:00:06PM -0400, Justin Waters wrote:
>
> > Give the user the ability to disable NAND support by defining
> > CONFIG_NO_NAND. This will allow custom hardware to easily support
>
This rule catches images such as MLO.byteswap
Signed-off-by: Justin Waters
---
.gitignore |2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.gitignore b/.gitignore
index 771b860..d1282e7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -24,7 +24,7 @@
# Top-level generic files
patch set improves the out-of-box experience on the
BeagleBone Black without impacting the existing AM335x boards.
Justin Waters (5):
am335x_evm: Make NAND support modular
am335x_evm: Add am335x_boneblack variant
am335x_evm: Add command line editing
am335x_evm: Rework bootcmd to handle two
The BeagleBone Black can boot from either the MMC card
or eMMC chip on board. We should try both interfaces.
This modification also allows a graceful fallback if
a device exists but boot images are not present on it.
Signed-off-by: Justin Waters
---
include/configs/am335x_evm.h | 42
Many modern U-Boot ports enable command line editing and
a history buffer. The am335x_evm configuration is fairly
comprehensive as it is, so a few extra kb should not be
noticable, and it adds a very convenient feature.
Signed-off-by: Justin Waters
---
include/configs/am335x_evm.h |3 +++
1
Give the user the ability to disable NAND support by defining
CONFIG_NO_NAND. This will allow custom hardware to easily support
this configuration.
Signed-off-by: Justin Waters
---
include/configs/am335x_evm.h | 55 --
1 file changed, 37 insertions
else.
Signed-off-by: Justin Waters
---
boards.cfg |1 +
include/configs/am335x_evm.h |7 ++-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/boards.cfg b/boards.cfg
index c0c4282..7dea9e8 100644
--- a/boards.cfg
+++ b/boards.cfg
@@ -249,6 +
Peter,
On Fri, 2009-11-13 at 17:10 -0500, Justin Waters wrote:
> Peter,
>
> On Fri, 2009-11-13 at 16:39 -0500, Peter Tyser wrote:
> > My guess is that somehow the end of u-boot command section is getting
> > corrupted. Perhaps the editenv patches, etc increase the size o
Peter,
On Fri, 2009-11-13 at 16:39 -0500, Peter Tyser wrote:
> My guess is that somehow the end of u-boot command section is getting
> corrupted. Perhaps the editenv patches, etc increase the size of your
> image such there's an overlap in sections that isn't reported as an
> error? Or is the st
On Fri, 2009-11-13 at 12:50 -0500, Peter Tyser wrote:
> On Fri, 2009-11-13 at 12:01 -0500, Justin Waters wrote:
> > Hi Peter,
> >
> > On Fri, 2009-11-13 at 11:50 -0500, Peter Tyser wrote:
> > > Do no commands work for you, or just "help" in particular?
&g
Hi Peter,
On Fri, 2009-11-13 at 11:50 -0500, Peter Tyser wrote:
> Do no commands work for you, or just "help" in particular?
>From what I can tell, just "help".
> And are you seeing 2 separate issues: 1 where the help output is
> garbled, and 1 where the "help" command can't be ran?
Yes, I am s
if you look at the main loop,
non-hush systems use "readline" (which is indirectly modified by the
aforementioned commits), while hush systems do not.
I'm not really sure what would be the best way to fix this. Any ideas?
-Justin Waters
he two implementations, the code compiles fine.
However, I'm not really sure what the correct fix would be. I just
wanted to let you know.
-Justin Waters
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
taken the liberty of sanitizing the U-Boot source code. Please
consider this patch for inclusion into the next release.
Signed-off-by: Justin Waters
---
diff --git a/board/netphone/phone_console.c b/board/netphone/phone_console.c
index 408ada0..d90de
eam does not
support the AT91SAM9G20-EK.
With that being said, this link seems to work:
ftp://www.linux4sam.org/pub/uboot/u-boot-1.3.4-exp/u-boot-1.3.4-exp.diff
You should probably contact the folks at Linux4Sam to tell them that
their instructions are incorrect.
-Justin Waters
24 matches
Mail list logo