From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerry Van Baren Date: Tue, 16 Oct 2007 16:01:51 -0400 Subject: [U-Boot-Users] [Patch] Make MPC8266ADS compile again In-Reply-To: <47151610.47FrR7hZ3a0AxzYl%runet@innovsys.com> References: <47151610.47FrR7hZ3a0AxzYl%runet@innovsys.com> Message-ID: <471518AF.8080509@ge.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de runet at innovsys.com wrote: > Make MPC8266ADS board compile again. > Signed-off-by: Runet Torgersen > > 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 and #define only the commands that actually are desired. The simplest (and probably most proper) way to do this is actually to #include 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