* [U-Boot] [PATCH] arm: Tegra: Fix Harmony and Ventana builds
@ 2011-12-19 23:08 Tom Warren
2011-12-20 0:06 ` Stephen Warren
0 siblings, 1 reply; 4+ messages in thread
From: Tom Warren @ 2011-12-19 23:08 UTC (permalink / raw)
To: u-boot
Signed-off-by: Tom Warren <twarren@nvidia.com>
BUG=none
TEST=built all 3 (Harmony, Seaboard and Ventana) and tested Seaboard
---
board/nvidia/harmony/Makefile | 1 -
board/nvidia/ventana/Makefile | 3 +--
include/configs/ventana.h | 3 +++
3 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/board/nvidia/harmony/Makefile b/board/nvidia/harmony/Makefile
index f6599de..b6efa1c 100644
--- a/board/nvidia/harmony/Makefile
+++ b/board/nvidia/harmony/Makefile
@@ -31,7 +31,6 @@ endif
LIB = $(obj)lib$(BOARD).o
COBJS := $(BOARD).o
-COBJS += ../common/board.o
SRCS := $(COBJS:.o=.c)
OBJS := $(addprefix $(obj),$(COBJS))
diff --git a/board/nvidia/ventana/Makefile b/board/nvidia/ventana/Makefile
index 9e5a87f..b4ab79a 100644
--- a/board/nvidia/ventana/Makefile
+++ b/board/nvidia/ventana/Makefile
@@ -30,8 +30,7 @@ endif
LIB = $(obj)lib$(BOARD).o
-COBJS += ../seaboard/seaboard.o
-COBJS += ../common/board.o
+COBJS = ../seaboard/seaboard.o
SRCS := $(COBJS:.o=.c)
OBJS := $(addprefix $(obj),$(COBJS))
diff --git a/include/configs/ventana.h b/include/configs/ventana.h
index afd6ff6..acc9b43 100644
--- a/include/configs/ventana.h
+++ b/include/configs/ventana.h
@@ -52,4 +52,7 @@
#define CONFIG_EFI_PARTITION
#define CONFIG_CMD_EXT2
#define CONFIG_CMD_FAT
+
+/* Environment not stored */
+#define CONFIG_ENV_IS_NOWHERE
#endif /* __CONFIG_H */
--
1.7.7.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH] arm: Tegra: Fix Harmony and Ventana builds
2011-12-19 23:08 [U-Boot] [PATCH] arm: Tegra: Fix Harmony and Ventana builds Tom Warren
@ 2011-12-20 0:06 ` Stephen Warren
2011-12-20 6:55 ` Albert ARIBAUD
0 siblings, 1 reply; 4+ messages in thread
From: Stephen Warren @ 2011-12-20 0:06 UTC (permalink / raw)
To: u-boot
Tom Warren wrote at Monday, December 19, 2011 4:09 PM:
> Signed-off-by: Tom Warren <twarren@nvidia.com>
>
> BUG=none
> TEST=built all 3 (Harmony, Seaboard and Ventana) and tested Seaboard
Tom,
I'm a little confused by this. The patch removes ../common/board.o from
COBJS for Harmony and Ventana, but not from Seaboard, and at least in
u-boot-tegra/ next, Seaboard still references that file.
Also, applying this patch causes Harmony and Ventana to fail to build
(link) due to undefined symbols typically provided by common/board.o.
What branch is the patch targeted at, and what build problems is it
solving?
--
nvpublic
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH] arm: Tegra: Fix Harmony and Ventana builds
2011-12-20 0:06 ` Stephen Warren
@ 2011-12-20 6:55 ` Albert ARIBAUD
2011-12-20 17:21 ` Tom Warren
0 siblings, 1 reply; 4+ messages in thread
From: Albert ARIBAUD @ 2011-12-20 6:55 UTC (permalink / raw)
To: u-boot
Hi all,
Le 20/12/2011 01:06, Stephen Warren a ?crit :
> Tom Warren wrote at Monday, December 19, 2011 4:09 PM:
>> Signed-off-by: Tom Warren<twarren@nvidia.com>
>>
>> BUG=none
>> TEST=built all 3 (Harmony, Seaboard and Ventana) and tested Seaboard
>
> Tom,
>
> I'm a little confused by this. The patch removes ../common/board.o from
> COBJS for Harmony and Ventana, but not from Seaboard, and at least in
> u-boot-tegra/ next, Seaboard still references that file.
>
> Also, applying this patch causes Harmony and Ventana to fail to build
> (link) due to undefined symbols typically provided by common/board.o.
>
> What branch is the patch targeted at, and what build problems is it
> solving?
Plus, I would suggest making the commit message less cryptic; I can make
no heads or tails of these "BUG=" and "TEST=" lines.
Amicalement,
--
Albert.
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH] arm: Tegra: Fix Harmony and Ventana builds
2011-12-20 6:55 ` Albert ARIBAUD
@ 2011-12-20 17:21 ` Tom Warren
0 siblings, 0 replies; 4+ messages in thread
From: Tom Warren @ 2011-12-20 17:21 UTC (permalink / raw)
To: u-boot
Sorry, folks. Please ignore u-boot-tegra/next for now. It's in transition.
u-boot-tegra/master has some new patches (getting ready for a pull request) that changed the Seaboard Makefile but not the Harmony or Ventana ones. The fix-it patch I submitted should've had a line that said it applies against u-boot-tegra/master (which really should be 'next', I guess).
The BUG= and TEST= lines are required for ChromeOS U-Boot submissions - I just got into the habit of always applying them to commit messages. I'll remove 'em, add some more info about where exactly this patch applies, and resubmit.
Thanks for catching all this,
Tom
> -----Original Message-----
> From: Albert ARIBAUD [mailto:albert.u.boot at aribaud.net]
> Sent: Monday, December 19, 2011 11:56 PM
> To: Stephen Warren
> Cc: Tom Warren; u-boot at lists.denx.de; sjg at chromium.org; wd at denx.de; Tom
> Warren
> Subject: Re: [PATCH] arm: Tegra: Fix Harmony and Ventana builds
>
> Hi all,
>
> Le 20/12/2011 01:06, Stephen Warren a ?crit :
> > Tom Warren wrote at Monday, December 19, 2011 4:09 PM:
> >> Signed-off-by: Tom Warren<twarren@nvidia.com>
> >>
> >> BUG=none
> >> TEST=built all 3 (Harmony, Seaboard and Ventana) and tested Seaboard
> >
> > Tom,
> >
> > I'm a little confused by this. The patch removes ../common/board.o
> > from COBJS for Harmony and Ventana, but not from Seaboard, and at
> > least in u-boot-tegra/ next, Seaboard still references that file.
> >
> > Also, applying this patch causes Harmony and Ventana to fail to build
> > (link) due to undefined symbols typically provided by common/board.o.
> >
> > What branch is the patch targeted at, and what build problems is it
> > solving?
>
> Plus, I would suggest making the commit message less cryptic; I can make no
> heads or tails of these "BUG=" and "TEST=" lines.
>
> Amicalement,
> --
> Albert.
-----------------------------------------------------------------------------------
This email message is for the sole use of the intended recipient(s) and may contain
confidential information. Any unauthorized review, use, disclosure or distribution
is prohibited. If you are not the intended recipient, please contact the sender by
reply email and destroy all copies of the original message.
-----------------------------------------------------------------------------------
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-12-20 17:21 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-19 23:08 [U-Boot] [PATCH] arm: Tegra: Fix Harmony and Ventana builds Tom Warren
2011-12-20 0:06 ` Stephen Warren
2011-12-20 6:55 ` Albert ARIBAUD
2011-12-20 17:21 ` Tom Warren
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox