All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH][NEXT] arm-reloc: don't undef CONFIG_SYS_ARM_WITHOUT_RELOC
@ 2010-09-22 21:32 Ben Gardiner
  2010-09-23  5:29 ` Heiko Schocher
  2010-10-12 17:56 ` Wolfgang Denk
  0 siblings, 2 replies; 3+ messages in thread
From: Ben Gardiner @ 2010-09-22 21:32 UTC (permalink / raw)
  To: u-boot

There were some #undef's of CONFIG_SYS_ARM_WITHOUT_RELOC added to a few board
configs as part of the arm relocation series; but these are not needed now as we
do not #undef what is not #defined in the first place.

Signed-off-by: Ben Gardiner <bengardiner@nanometrics.ca>
CC: Heiko Schocher <hs@denx.de>

---
 include/configs/da850evm.h         |    1 -
 include/configs/imx27lite-common.h |    1 -
 include/configs/omap3_beagle.h     |    1 -
 include/configs/qong.h             |    1 -
 include/configs/tx25.h             |    1 -
 5 files changed, 0 insertions(+), 5 deletions(-)

diff --git a/include/configs/da850evm.h b/include/configs/da850evm.h
index d02b196..e0a3bae 100644
--- a/include/configs/da850evm.h
+++ b/include/configs/da850evm.h
@@ -138,7 +138,6 @@
 #endif
 
 /* additions for new relocation code, must added to all boards */
-#undef CONFIG_SYS_ARM_WITHOUT_RELOC /* This board is tested with relocation support */
 #define CONFIG_SYS_SDRAM_BASE		0xc0000000
 #define CONFIG_SYS_INIT_SP_ADDR		(CONFIG_SYS_SDRAM_BASE + 0x1000 - /* Fix this */ \
 					CONFIG_SYS_GBL_DATA_SIZE)
diff --git a/include/configs/imx27lite-common.h b/include/configs/imx27lite-common.h
index 812e5f2..4f7d61d 100644
--- a/include/configs/imx27lite-common.h
+++ b/include/configs/imx27lite-common.h
@@ -236,7 +236,6 @@
 	"mtdparts=" MTDPARTS_DEFAULT "\0"				\
 
 /* additions for new relocation code, must added to all boards */
-#undef CONFIG_SYS_ARM_WITHOUT_RELOC /* This board is tested with relocation support */
 #define CONFIG_SYS_SDRAM_BASE		PHYS_SDRAM_1
 #define CONFIG_SYS_INIT_SP_ADDR		(CONFIG_SYS_SDRAM_BASE + 0x1000 - /* Fix this */ \
 					CONFIG_SYS_GBL_DATA_SIZE)
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h
index 2463be4..ce658d1 100644
--- a/include/configs/omap3_beagle.h
+++ b/include/configs/omap3_beagle.h
@@ -341,7 +341,6 @@ extern unsigned int boot_flash_type;
 #endif
 
 /* additions for new relocation code, must added to all boards */
-#undef CONFIG_SYS_ARM_WITHOUT_RELOC /* This board is tested with relocation support */
 #define CONFIG_SYS_SDRAM_BASE		PHYS_SDRAM_1
 #define CONFIG_SYS_INIT_SP_ADDR		(LOW_LEVEL_SRAM_STACK - CONFIG_SYS_GBL_DATA_SIZE)
 
diff --git a/include/configs/qong.h b/include/configs/qong.h
index 7a68b7b..b9144eb 100644
--- a/include/configs/qong.h
+++ b/include/configs/qong.h
@@ -283,7 +283,6 @@ extern int qong_nand_rdy(void *chip);
 	"128k(env2),2432k(kernel),13m(ramdisk),-(user)"
 
 /* additions for new relocation code, must added to all boards */
-#undef CONFIG_SYS_ARM_WITHOUT_RELOC /* This board is tested with relocation support */
 #define CONFIG_SYS_SDRAM_BASE		0x80000000
 #define CONFIG_SYS_INIT_RAM_ADDR	IRAM_BASE_ADDR
 #define CONFIG_SYS_INIT_RAM_END		IRAM_SIZE
diff --git a/include/configs/tx25.h b/include/configs/tx25.h
index c798570..85f166e 100644
--- a/include/configs/tx25.h
+++ b/include/configs/tx25.h
@@ -177,7 +177,6 @@
 	"upd=run load update\0"						\
 
 /* additions for new relocation code, must added to all boards */
-#undef CONFIG_SYS_ARM_WITHOUT_RELOC /* This board is tested with relocation support */
 #define CONFIG_SYS_SDRAM_BASE		PHYS_SDRAM_1
 #define CONFIG_SYS_INIT_SP_ADDR		(CONFIG_SYS_SDRAM_BASE + 0x1000 - /* Fix this */ \
 					CONFIG_SYS_GBL_DATA_SIZE)
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH][NEXT] arm-reloc: don't undef CONFIG_SYS_ARM_WITHOUT_RELOC
  2010-09-22 21:32 [U-Boot] [PATCH][NEXT] arm-reloc: don't undef CONFIG_SYS_ARM_WITHOUT_RELOC Ben Gardiner
@ 2010-09-23  5:29 ` Heiko Schocher
  2010-10-12 17:56 ` Wolfgang Denk
  1 sibling, 0 replies; 3+ messages in thread
From: Heiko Schocher @ 2010-09-23  5:29 UTC (permalink / raw)
  To: u-boot

Hello Ben,

Ben Gardiner wrote:
> There were some #undef's of CONFIG_SYS_ARM_WITHOUT_RELOC added to a few board
> configs as part of the arm relocation series; but these are not needed now as we
> do not #undef what is not #defined in the first place.

Good catch, thanks!

Acked-by: Heiko Schocher<hs@denx.de>

bye,
Heiko
-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH][NEXT] arm-reloc: don't undef CONFIG_SYS_ARM_WITHOUT_RELOC
  2010-09-22 21:32 [U-Boot] [PATCH][NEXT] arm-reloc: don't undef CONFIG_SYS_ARM_WITHOUT_RELOC Ben Gardiner
  2010-09-23  5:29 ` Heiko Schocher
@ 2010-10-12 17:56 ` Wolfgang Denk
  1 sibling, 0 replies; 3+ messages in thread
From: Wolfgang Denk @ 2010-10-12 17:56 UTC (permalink / raw)
  To: u-boot

Dear Ben Gardiner,

In message <1285191169-32552-1-git-send-email-bengardiner@nanometrics.ca> you wrote:
> There were some #undef's of CONFIG_SYS_ARM_WITHOUT_RELOC added to a few board
> configs as part of the arm relocation series; but these are not needed now as we
> do not #undef what is not #defined in the first place.
> 
> Signed-off-by: Ben Gardiner <bengardiner@nanometrics.ca>
> CC: Heiko Schocher <hs@denx.de>
> 
> ---
>  include/configs/da850evm.h         |    1 -
>  include/configs/imx27lite-common.h |    1 -
>  include/configs/omap3_beagle.h     |    1 -
>  include/configs/qong.h             |    1 -
>  include/configs/tx25.h             |    1 -
>  5 files changed, 0 insertions(+), 5 deletions(-)

Aplied to u-boot-arm, thanks.

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
To be sure of hitting the target, shoot first and, whatever you  hit,
call it the target.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-10-12 17:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-22 21:32 [U-Boot] [PATCH][NEXT] arm-reloc: don't undef CONFIG_SYS_ARM_WITHOUT_RELOC Ben Gardiner
2010-09-23  5:29 ` Heiko Schocher
2010-10-12 17:56 ` Wolfgang Denk

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.