Re: [PATCH] wscript: Deduplicate installed files

2023-02-06 Thread Gedare Bloom
On Mon, Feb 6, 2023 at 1:03 PM Kinsey Moore wrote: > > On 2/6/2023 8:44 AM, Sebastian Huber wrote: > > On 06.02.23 15:30, Joel Sherrill wrote: > >> On Mon, Feb 6, 2023 at 12:55 AM Sebastian Huber > >> >> > wrote: > >> On 06.02.23 03:35, Chris Johns

Re: [PATCH] wscript: Deduplicate installed files

2023-02-06 Thread Kinsey Moore
On 2/6/2023 8:44 AM, Sebastian Huber wrote: On 06.02.23 15:30, Joel Sherrill wrote: On Mon, Feb 6, 2023 at 12:55 AM Sebastian Huber > wrote:     On 06.02.23 03:35, Chris Johns wrote: > On 4/2/2023 6:11 am, Sebastian Huber wrote: >> On

Re: [PATCH] wscript: Deduplicate installed files

2023-02-06 Thread Sebastian Huber
On 06.02.23 15:30, Joel Sherrill wrote: On Mon, Feb 6, 2023 at 12:55 AM Sebastian Huber > wrote: On 06.02.23 03:35, Chris Johns wrote: > On 4/2/2023 6:11 am, Sebastian Huber wrote: >> On 03.02.23 19:45, Kinsey Moore wrote: >>>

Re: [PATCH] wscript: Deduplicate installed files

2023-02-06 Thread Joel Sherrill
On Mon, Feb 6, 2023 at 12:55 AM Sebastian Huber < sebastian.hu...@embedded-brains.de> wrote: > > > On 06.02.23 03:35, Chris Johns wrote: > > On 4/2/2023 6:11 am, Sebastian Huber wrote: > >> On 03.02.23 19:45, Kinsey Moore wrote: > >>> This is my first stab at solving this duplicate install

Re: [PATCH] wscript: Deduplicate installed files

2023-02-05 Thread Sebastian Huber
On 06.02.23 03:35, Chris Johns wrote: On 4/2/2023 6:11 am, Sebastian Huber wrote: On 03.02.23 19:45, Kinsey Moore wrote: This is my first stab at solving this duplicate install problem. I could manually solve the problem by deduplicating the object includes and moving it up to the BSP, but

Re: [PATCH] wscript: Deduplicate installed files

2023-02-05 Thread Chris Johns
On 4/2/2023 6:11 am, Sebastian Huber wrote: > On 03.02.23 19:45, Kinsey Moore wrote: >> This is my first stab at solving this duplicate install problem. I could >> manually solve the problem by deduplicating the object includes and moving it >> up to the BSP, but that is less intuitive since these

Re: [PATCH] wscript: Deduplicate installed files

2023-02-03 Thread Kinsey Moore
It's already in a common objxilinxsupport.yml file. The problem is that it is being included by two different drivers both imported from the xilinx upstream driver repo, so it currently attempts to install those shared headers twice. I suppose the solution could be to bundle the shared code

Re: [PATCH] wscript: Deduplicate installed files

2023-02-03 Thread Sebastian Huber
On 03.02.23 19:45, Kinsey Moore wrote: This is my first stab at solving this duplicate install problem. I could manually solve the problem by deduplicating the object includes and moving it up to the BSP, but that is less intuitive since these drivers both depend on the same code and the BSP

Re: [PATCH] wscript: Deduplicate installed files

2023-02-03 Thread Kinsey Moore
This is my first stab at solving this duplicate install problem. I could manually solve the problem by deduplicating the object includes and moving it up to the BSP, but that is less intuitive since these drivers both depend on the same code and the BSP doesn't depend on it directly. Kinsey

[PATCH] wscript: Deduplicate installed files

2023-02-03 Thread Kinsey Moore
The addition of the NAND and NOR drivers both depending on the Xilinx support code independently has introduced the possibility of duplicate installed headers. This duplication results in multiple header install attempts which can conflict since the installs can run on multiple CPUs. This change