* [U-Boot-Users] [Patch] Make MPC8266ADS compile again
@ 2007-10-16 19:50 runet at innovsys.com
2007-10-16 20:01 ` Jerry Van Baren
2007-10-16 20:33 ` Wolfgang Denk
0 siblings, 2 replies; 4+ messages in thread
From: runet at innovsys.com @ 2007-10-16 19:50 UTC (permalink / raw)
To: u-boot
Make MPC8266ADS board compile again.
Signed-off-by: Runet Torgersen <runet@innovsys.com>
diff --git a/include/configs/MPC8266ADS.h b/include/configs/MPC8266ADS.h
index 14b041e..d392b98 100644
--- a/include/configs/MPC8266ADS.h
+++ b/include/configs/MPC8266ADS.h
@@ -168,6 +168,7 @@
#undef CONFIG_CMD_MFSL
#undef CONFIG_CMD_MMC
#undef CONFIG_CMD_NAND
+#undef CONFIG_CMD_ONENAND
#undef CONFIG_CMD_PCMCIA
#undef CONFIG_CMD_REISER
#undef CONFIG_CMD_SCSI
@@ -177,6 +178,7 @@
#undef CONFIG_CMD_UNIVERSE
#undef CONFIG_CMD_USB
#undef CONFIG_CMD_XIMG
+#undef CONFIG_CMD_AT91_SPIMUX
/* Define a command string that is automatically executed when no character
* is read on the console interface withing "Boot Delay" after reset.
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot-Users] [Patch] Make MPC8266ADS compile again
2007-10-16 19:50 [U-Boot-Users] [Patch] Make MPC8266ADS compile again runet at innovsys.com
@ 2007-10-16 20:01 ` Jerry Van Baren
2007-10-16 20:33 ` Wolfgang Denk
2007-10-16 20:33 ` Wolfgang Denk
1 sibling, 1 reply; 4+ messages in thread
From: Jerry Van Baren @ 2007-10-16 20:01 UTC (permalink / raw)
To: u-boot
runet at innovsys.com wrote:
> Make MPC8266ADS board compile again.
> Signed-off-by: Runet Torgersen <runet@innovsys.com>
>
> diff --git a/include/configs/MPC8266ADS.h b/include/configs/MPC8266ADS.h
> index 14b041e..d392b98 100644
> --- a/include/configs/MPC8266ADS.h
> +++ b/include/configs/MPC8266ADS.h
> @@ -168,6 +168,7 @@
> #undef CONFIG_CMD_MFSL
> #undef CONFIG_CMD_MMC
> #undef CONFIG_CMD_NAND
> +#undef CONFIG_CMD_ONENAND
> #undef CONFIG_CMD_PCMCIA
> #undef CONFIG_CMD_REISER
> #undef CONFIG_CMD_SCSI
> @@ -177,6 +178,7 @@
> #undef CONFIG_CMD_UNIVERSE
> #undef CONFIG_CMD_USB
> #undef CONFIG_CMD_XIMG
> +#undef CONFIG_CMD_AT91_SPIMUX
>
> /* Define a command string that is automatically executed when no character
> * is read on the console interface withing "Boot Delay" after reset.
The *proper* fix is to delete the
#include <config_cmd_all.h>
and #define only the commands that actually are desired.
The simplest (and probably most proper) way to do this is actually to
#include <config_cmd_default.h>
and then add non-default commands that may be useful on the MPC8266ADS
board.
The current configuration is legacy from the old bit-mapped
configuration ways plus a very poor choice to do the "all-subtractive"
method of selecting commands.
With the "all-subtractive" method, new commands will *FOREVER* be
breaking the board, resulting in patches and/or bit rot forever. Please
fix it once, right, and we will all thank you forever.
TIA,
gvb
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot-Users] [Patch] Make MPC8266ADS compile again
2007-10-16 19:50 [U-Boot-Users] [Patch] Make MPC8266ADS compile again runet at innovsys.com
2007-10-16 20:01 ` Jerry Van Baren
@ 2007-10-16 20:33 ` Wolfgang Denk
1 sibling, 0 replies; 4+ messages in thread
From: Wolfgang Denk @ 2007-10-16 20:33 UTC (permalink / raw)
To: u-boot
In message <47151610.47FrR7hZ3a0AxzYl%runet@innovsys.com> you wrote:
> Make MPC8266ADS board compile again.
> Signed-off-by: Runet Torgersen <runet@innovsys.com>
Applied, but please see JVB's remarks!
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
Nail here --X-- for new monitor.
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot-Users] [Patch] Make MPC8266ADS compile again
2007-10-16 20:01 ` Jerry Van Baren
@ 2007-10-16 20:33 ` Wolfgang Denk
0 siblings, 0 replies; 4+ messages in thread
From: Wolfgang Denk @ 2007-10-16 20:33 UTC (permalink / raw)
To: u-boot
In message <471518AF.8080509@ge.com> you wrote:
>
> The *proper* fix is to delete the
> #include <config_cmd_all.h>
> and #define only the commands that actually are desired.
Hm...
> The simplest (and probably most proper) way to do this is actually to
> #include <config_cmd_default.h>
> and then add non-default commands that may be useful on the MPC8266ADS
> board.
Indeed, that's the preferred way for 99% of all situations.
> The current configuration is legacy from the old bit-mapped
> configuration ways plus a very poor choice to do the "all-subtractive"
> method of selecting commands.
>
> With the "all-subtractive" method, new commands will *FOREVER* be
> breaking the board, resulting in patches and/or bit rot forever. Please
> fix it once, right, and we will all thank you forever.
Agreed.
Nevertheless, the patch fixes a real build problem now, so I'll apply
it.
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
Q: How do you spell "onomatopoeia"?
A: The way it sounds.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-10-16 20:33 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-16 19:50 [U-Boot-Users] [Patch] Make MPC8266ADS compile again runet at innovsys.com
2007-10-16 20:01 ` Jerry Van Baren
2007-10-16 20:33 ` Wolfgang Denk
2007-10-16 20:33 ` 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.