Re: [U-Boot] [PATCH V2 06/12] board: keymile: Move common headers to board-common directory

2015-11-18 Thread Valentin Longchamp
On 13/11/2015 06:43, Nishanth Menon wrote: > Header files can be located in a generic location without > needing to reference them with ../common/ > > Generated with the following script > > #!/bin/bash > vendor=board/keymile > common=$vendor/common > > cfiles=`git grep "../common"

[U-Boot] [PATCH V2 06/12] board: keymile: Move common headers to board-common directory

2015-11-12 Thread Nishanth Menon
Header files can be located in a generic location without needing to reference them with ../common/ Generated with the following script #!/bin/bash vendor=board/keymile common=$vendor/common cfiles=`git grep "../common" $vendor|grep "#include"|cut -d '"' -f2|sort -u|grep c$` headers=`git grep