From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tom Rini Date: Fri, 27 Apr 2012 12:02:08 -0700 Subject: [U-Boot] [PATCH v2 1/2] CONFIG_SYS_BAUDRATE_TABLE: Add , place there In-Reply-To: <20120427184028.95C89204A5C@gemini.denx.de> References: <1335480396-29478-1-git-send-email-trini@ti.com> <20120427063137.077F6200244@gemini.denx.de> <4F9ADF70.4080009@ti.com> <20120427184028.95C89204A5C@gemini.denx.de> Message-ID: <4F9AED30.8010504@ti.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 04/27/2012 11:40 AM, Wolfgang Denk wrote: > Dear Tom Rini, > > In message<4F9ADF70.4080009@ti.com> you wrote: >> >>> Technically, I don't like the name "config_fallbacks.h"; how about >>> "config_defaults.h" instead? >> >> We have config_defaults.h today, which comes before > > Yes, why not use it for this purpose as well? It seems the > appropriate place to me. Order of operations. We would have to move it to after (and change behavior, and break a few board files, git grep CONFIG_BOOTM_ include/) or make everyone not using the standard undef to get their table, which I started down (as you could see from the patch) but it's quite invasive. Or we add a fallbacks file and have config.h be: First: default commands Second: Global defaults Third: board Fourth: arch fallbacks Fifth: Global fallbacks Since developers should be tweaking just their board config file I'm calling what's before defaults and what's after fallbacks.. -- Tom