Re: [U-Boot] Question about board-specific Makefile actions

2015-03-16 Thread Masahiro Yamada
Hi James, 2015-03-14 3:08 GMT+09:00 James Chargin jimccr...@gmail.com: These are correct in sub-directory Makefiles in general, but unfortunately, make clean does not descend into board/ directory for some reason. So, they do not work in board/*/Makefile Should this be considered a bug

Re: [U-Boot] Question about board-specific Makefile actions

2015-03-13 Thread James Chargin
Dear Masahiro, Your help has enabled me to make my board Makefile do what I want (except for the clean target, see below). On 03/12/2015 09:20 PM, Masahiro Yamada wrote: Hi James, 2015-03-13 3:35 GMT+09:00 James Chargin jimccr...@gmail.com: I could still use some help with this from

Re: [U-Boot] Question about board-specific Makefile actions

2015-03-12 Thread Masahiro Yamada
Hi James, 2015-03-13 3:35 GMT+09:00 James Chargin jimccr...@gmail.com: I could still use some help with this from someone who really knows how the make system works. Tom and Simon provided hints that were helpful, as I note below. On 03/09/2015 08:34 AM, James Chargin wrote: So, is no

Re: [U-Boot] Question about board-specific Makefile actions

2015-03-12 Thread Masahiro Yamada
Hi Simon, 2015-03-13 3:55 GMT+09:00 Simon Glass s...@chromium.org: 2) More generally, I'd like to be able to add some arbitrary make steps that are peculiar to my boards Makefile, but I can't figure this out either, so far. I've tried adding my_all to extra-y and then adding steps for

Re: [U-Boot] Question about board-specific Makefile actions

2015-03-12 Thread James Chargin
I could still use some help with this from someone who really knows how the make system works. Tom and Simon provided hints that were helpful, as I note below. On 03/09/2015 08:34 AM, James Chargin wrote: So, is no one willing to offer a hint? Thanks, Jim On 03/03/2015 01:39 PM, James

Re: [U-Boot] Question about board-specific Makefile actions

2015-03-12 Thread Simon Glass
+Masahiro Hi James, On 12 March 2015 at 12:35, James Chargin jimccr...@gmail.com wrote: I could still use some help with this from someone who really knows how the make system works. Tom and Simon provided hints that were helpful, as I note below. On 03/09/2015 08:34 AM, James Chargin

Re: [U-Boot] Question about board-specific Makefile actions

2015-03-09 Thread James Chargin
So, is no one willing to offer a hint? Thanks, Jim On 03/03/2015 01:39 PM, James Chargin wrote: I have a custom board in a git workspace for U-Boot 2014.07. I've copied most of this from the .../board/ti/beagle. My board directory Makefile looks like 8--- obj-y := board.o 8--- I'd like to

Re: [U-Boot] Question about board-specific Makefile actions

2015-03-09 Thread Tom Rini
On Tue, Mar 03, 2015 at 01:39:35PM -0800, James Chargin wrote: I have a custom board in a git workspace for U-Boot 2014.07. I've copied most of this from the .../board/ti/beagle. My board directory Makefile looks like 8--- obj-y := board.o 8--- I'd like to add a few files to this

Re: [U-Boot] Question about board-specific Makefile actions

2015-03-09 Thread Simon Glass
Hi, On 9 March 2015 at 08:54, Tom Rini tr...@konsulko.com wrote: On Tue, Mar 03, 2015 at 01:39:35PM -0800, James Chargin wrote: I have a custom board in a git workspace for U-Boot 2014.07. I've copied most of this from the .../board/ti/beagle. My board directory Makefile looks like 8---

[U-Boot] Question about board-specific Makefile actions

2015-03-03 Thread James Chargin
I have a custom board in a git workspace for U-Boot 2014.07. I've copied most of this from the .../board/ti/beagle. My board directory Makefile looks like 8--- obj-y := board.o 8--- I'd like to add a few files to this directory that are processed during make all and have any newly derived