Re: [U-Boot] [PATCH v3 2/4] build/mkconfig: Add EXTRA_OPTS argument to make to modify build

2011-06-08 Thread McClintock Matthew-B29882
On Tue, Jun 7, 2011 at 3:04 PM, Wolfgang Denk wrote: >> BOARD_NAND >> BOARD_NAND_IN_BOOTSTRAP >> BOARD_SPIFLASH >> BOARD_SPIFLASH_IN_BOOTSTRAP >> BOARD_SDCARD >> BOARD_SDCARD_IN_BOOTSTRAP > > Are these independent targets?  I think you don't run a > "./MAKEALL BOARD_SDCARD_IN_BOOTSTRAP" alone, rig

Re: [U-Boot] [PATCH v3 2/4] build/mkconfig: Add EXTRA_OPTS argument to make to modify build

2011-06-07 Thread Wolfgang Denk
Dear McClintock Matthew-B29882, In message you wrote: > > How do I make a new build configuration without making changes to > boards.cfg or the Makefile? I could add a new entry there for every > bootstrap build but I was trying and hoping to avoid this. For example > for every build I could need

Re: [U-Boot] [PATCH v3 2/4] build/mkconfig: Add EXTRA_OPTS argument to make to modify build

2011-06-07 Thread McClintock Matthew-B29882
On Sat, Jun 4, 2011 at 7:33 AM, Wolfgang Denk wrote: >> Did you not see the other patch in the same series that makes use of >> this feature? It's not about actually typing it out. Let me know if >> you need help finding patch 3/4. > > It does not matter if you add it here and use it there.  We al

Re: [U-Boot] [PATCH v3 2/4] build/mkconfig: Add EXTRA_OPTS argument to make to modify build

2011-06-04 Thread Wolfgang Denk
Dear McClintock Matthew-B29882, In message you wrote: > On Sat, Jun 4, 2011 at 2:56 AM, Wolfgang Denk wrote: > > I see absolutely no sense in this, =A0We already have a way to specify > > such arguments, as you write yourself in your commit message. =A0Your > > new way is just more complicated,

Re: [U-Boot] [PATCH v3 2/4] build/mkconfig: Add EXTRA_OPTS argument to make to modify build

2011-06-04 Thread McClintock Matthew-B29882
On Sat, Jun 4, 2011 at 2:56 AM, Wolfgang Denk wrote: > I see absolutely no sense in this,  We already have a way to specify > such arguments, as you write yourself in your commit message.  Your > new way is just more complicated, more typing effort, and as such just > useless overhead. Did you no

Re: [U-Boot] [PATCH v3 2/4] build/mkconfig: Add EXTRA_OPTS argument to make to modify build

2011-06-04 Thread Wolfgang Denk
Dear Matthew McClintock, In message <1307131671-22745-1-git-send-email-...@freescale.com> you wrote: > Allow users to pass in extra defines via make so they can > modify the build. Example > > make P1022DS EXTRA_OPTS=NAND > > is equivalent to > > make P1022DS_NAND I see absolutely no sense in

[U-Boot] [PATCH v3 2/4] build/mkconfig: Add EXTRA_OPTS argument to make to modify build

2011-06-03 Thread Matthew McClintock
Allow users to pass in extra defines via make so they can modify the build. Example make P1022DS EXTRA_OPTS=NAND is equivalent to make P1022DS_NAND Signed-off-by: Matthew McClintock --- v2: Fix tab indention, fix posix compliance v3: Move appending $EXTRA_OPTS up higher before we set $TARGETS