* [U-Boot-Users] [PATCH] Update MPC8349ITX*_config to place config.tmp in right place.
@ 2007-09-14 17:14 Grant Likely
2007-09-14 17:16 ` Grant Likely
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Grant Likely @ 2007-09-14 17:14 UTC (permalink / raw)
To: u-boot
From: Sam Sparks <SSparks@twacs.com>
MPC834ITX*_config does not store config.tmp at the correct locatation,
causing MPC8349ITXGP to have the wrong TEXT_BASE.
Signed-off-by: Sam Sparks <SSparks@twacs.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
---
Wolfgang, I've confirmed this fix. It needs to go into 1.3.1
Cheers,
g.
Makefile | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile
index 72e38f2..a837bc7 100644
--- a/Makefile
+++ b/Makefile
@@ -1794,13 +1794,13 @@ MPC8349ITX_config \
MPC8349ITX_LOWBOOT_config \
MPC8349ITXGP_config: unconfig
@mkdir -p $(obj)include
- @mkdir -p $(obj)board/mpc8349itx
+ @mkdir -p $(obj)board/freescale/mpc8349itx
@echo "#define CONFIG_$(subst _LOWBOOT,,$(@:_config=))" >> $(obj)include/config.h
@if [ "$(findstring GP,$@)" ] ; then \
- echo "TEXT_BASE = 0xFE000000" >$(obj)board/mpc8349itx/config.tmp ; \
+ echo "TEXT_BASE = 0xFE000000" >$(obj)board/freescale/mpc8349itx/config.tmp ; \
fi
@if [ "$(findstring LOWBOOT,$@)" ] ; then \
- echo "TEXT_BASE = 0xFE000000" >$(obj)board/mpc8349itx/config.tmp ; \
+ echo "TEXT_BASE = 0xFE000000" >$(obj)board/freescale/mpc8349itx/config.tmp ; \
fi
@$(MKCONFIG) -a -n $(@:_config=) MPC8349ITX ppc mpc83xx mpc8349itx freescale
^ permalink raw reply related [flat|nested] 6+ messages in thread* [U-Boot-Users] [PATCH] Update MPC8349ITX*_config to place config.tmp in right place.
2007-09-14 17:14 [U-Boot-Users] [PATCH] Update MPC8349ITX*_config to place config.tmp in right place Grant Likely
@ 2007-09-14 17:16 ` Grant Likely
2007-09-14 22:22 ` Wolfgang Denk
2007-09-14 21:38 ` Kim Phillips
` (2 subsequent siblings)
3 siblings, 1 reply; 6+ messages in thread
From: Grant Likely @ 2007-09-14 17:16 UTC (permalink / raw)
To: u-boot
On 9/14/07, Grant Likely <grant.likely@secretlab.ca> wrote:
> From: Sam Sparks <SSparks@twacs.com>
>
> MPC834ITX*_config does not store config.tmp at the correct locatation,
> causing MPC8349ITXGP to have the wrong TEXT_BASE.
>
> Signed-off-by: Sam Sparks <SSparks@twacs.com>
> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
> ---
>
> Wolfgang, I've confirmed this fix. It needs to go into 1.3.1
oops, make that 1.3.0 :-)
g.
--
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.
grant.likely at secretlab.ca
(403) 399-0195
^ permalink raw reply [flat|nested] 6+ messages in thread* [U-Boot-Users] [PATCH] Update MPC8349ITX*_config to place config.tmp in right place.
2007-09-14 17:16 ` Grant Likely
@ 2007-09-14 22:22 ` Wolfgang Denk
0 siblings, 0 replies; 6+ messages in thread
From: Wolfgang Denk @ 2007-09-14 22:22 UTC (permalink / raw)
To: u-boot
In message <fa686aa40709141016q7458f423q8fed321eff70e41e@mail.gmail.com> you wrote:
>
> > Wolfgang, I've confirmed this fix. It needs to go into 1.3.1
> oops, make that 1.3.0 :-)
Sorry - I'm a sequential type [My wife would say: "typical man".]
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Man did not weave the web of life; he is merely a strand in it.
Whatever he does to the web, he does to himself. - Seattle [1854]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot-Users] [PATCH] Update MPC8349ITX*_config to place config.tmp in right place.
2007-09-14 17:14 [U-Boot-Users] [PATCH] Update MPC8349ITX*_config to place config.tmp in right place Grant Likely
2007-09-14 17:16 ` Grant Likely
@ 2007-09-14 21:38 ` Kim Phillips
2007-09-14 22:21 ` Wolfgang Denk
2007-09-15 18:58 ` Wolfgang Denk
3 siblings, 0 replies; 6+ messages in thread
From: Kim Phillips @ 2007-09-14 21:38 UTC (permalink / raw)
To: u-boot
On Fri, 14 Sep 2007 11:14:42 -0600
Grant Likely <grant.likely@secretlab.ca> wrote:
> From: Sam Sparks <SSparks@twacs.com>
>
> MPC834ITX*_config does not store config.tmp at the correct locatation,
> causing MPC8349ITXGP to have the wrong TEXT_BASE.
>
> Signed-off-by: Sam Sparks <SSparks@twacs.com>
> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
> ---
>
> Wolfgang, I've confirmed this fix. It needs to go into 1.3.1
Hi guys!
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
WD, you may alternately pull:
git pull git://www.denx.de/git/u-boot-mpc83xx.git master
Kim
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot-Users] [PATCH] Update MPC8349ITX*_config to place config.tmp in right place.
2007-09-14 17:14 [U-Boot-Users] [PATCH] Update MPC8349ITX*_config to place config.tmp in right place Grant Likely
2007-09-14 17:16 ` Grant Likely
2007-09-14 21:38 ` Kim Phillips
@ 2007-09-14 22:21 ` Wolfgang Denk
2007-09-15 18:58 ` Wolfgang Denk
3 siblings, 0 replies; 6+ messages in thread
From: Wolfgang Denk @ 2007-09-14 22:21 UTC (permalink / raw)
To: u-boot
In message <20070914171333.29609.62843.stgit@trillian.cg.shawcable.net> you wrote:
> From: Sam Sparks <SSparks@twacs.com>
>
> MPC834ITX*_config does not store config.tmp at the correct locatation,
> causing MPC8349ITXGP to have the wrong TEXT_BASE.
>
> Signed-off-by: Sam Sparks <SSparks@twacs.com>
> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
> ---
>
> Wolfgang, I've confirmed this fix. It needs to go into 1.3.1
You mean, I should delay it and *NOT* add it to 1.3.0 ?
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
If a train station is a place where a train stops,
then what's a workstation?
^ permalink raw reply [flat|nested] 6+ messages in thread* [U-Boot-Users] [PATCH] Update MPC8349ITX*_config to place config.tmp in right place.
2007-09-14 17:14 [U-Boot-Users] [PATCH] Update MPC8349ITX*_config to place config.tmp in right place Grant Likely
` (2 preceding siblings ...)
2007-09-14 22:21 ` Wolfgang Denk
@ 2007-09-15 18:58 ` Wolfgang Denk
3 siblings, 0 replies; 6+ messages in thread
From: Wolfgang Denk @ 2007-09-15 18:58 UTC (permalink / raw)
To: u-boot
In message <20070914171333.29609.62843.stgit@trillian.cg.shawcable.net> you wrote:
> From: Sam Sparks <SSparks@twacs.com>
>
> MPC834ITX*_config does not store config.tmp at the correct locatation,
> causing MPC8349ITXGP to have the wrong TEXT_BASE.
Applied.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
In a survey taken several years ago, all incoming freshmen at MIT
were asked if they expected to graduate in the top half of their
class. Ninety-seven percent responded that they did.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2007-09-15 18:58 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-14 17:14 [U-Boot-Users] [PATCH] Update MPC8349ITX*_config to place config.tmp in right place Grant Likely
2007-09-14 17:16 ` Grant Likely
2007-09-14 22:22 ` Wolfgang Denk
2007-09-14 21:38 ` Kim Phillips
2007-09-14 22:21 ` Wolfgang Denk
2007-09-15 18:58 ` Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox