Re: [PATCH] dtc: add ability to make nodes conditional on them being referenced

2020-02-05 Thread sjg
On Tue, 28 Jan 2020 10:07:18 -0700 Simon Glass wrote: Hi Simon, > On Sat, 25 Jan 2020 at 16:18, André Przywara wrote: > > > > On 25/01/2020 16:20, Tom Rini wrote: > > > > Hi Tom, > > > > thanks for having a look! > > > > > > > On Tue, Jan 21, 2020 at 10:23:17AM +, Andre Przywara wrote: > >

Re: [PATCH] dtc: add ability to make nodes conditional on them being referenced

2020-01-28 Thread Andre Przywara
On Tue, 28 Jan 2020 10:07:18 -0700 Simon Glass wrote: Hi Simon, > On Sat, 25 Jan 2020 at 16:18, André Przywara wrote: > > > > On 25/01/2020 16:20, Tom Rini wrote: > > > > Hi Tom, > > > > thanks for having a look! > > > > > > > On Tue, Jan 21, 2020 at 10:23:17AM +, Andre Przywara wrote: >

Re: [PATCH] dtc: add ability to make nodes conditional on them being referenced

2020-01-28 Thread Simon Glass
Hi Andre, On Sat, 25 Jan 2020 at 16:18, André Przywara wrote: > > On 25/01/2020 16:20, Tom Rini wrote: > > Hi Tom, > > thanks for having a look! > > > > On Tue, Jan 21, 2020 at 10:23:17AM +, Andre Przywara wrote: > > > >> From: Maxime Ripard > >> > >> This is needed when importing mainline

Re: [PATCH] dtc: add ability to make nodes conditional on them being referenced

2020-01-25 Thread André Przywara
On 25/01/2020 16:20, Tom Rini wrote: Hi Tom, thanks for having a look! > On Tue, Jan 21, 2020 at 10:23:17AM +, Andre Przywara wrote: > >> From: Maxime Ripard >> >> This is needed when importing mainline DTs into U-Boot, as some started >> using this /omit-if-no-ref/ tag, so won't compile

Re: [PATCH] dtc: add ability to make nodes conditional on them being referenced

2020-01-25 Thread Tom Rini
On Tue, Jan 21, 2020 at 10:23:17AM +, Andre Przywara wrote: > From: Maxime Ripard > > This is needed when importing mainline DTs into U-Boot, as some started > using this /omit-if-no-ref/ tag, so won't compile with U-Boot's current > dtc copy. This is just a cherry-pick of the patch

[PATCH] dtc: add ability to make nodes conditional on them being referenced

2020-01-21 Thread Andre Przywara
From: Maxime Ripard This is needed when importing mainline DTs into U-Boot, as some started using this /omit-if-no-ref/ tag, so won't compile with U-Boot's current dtc copy. This is just a cherry-pick of the patch introducing this feature. Original commit message from Maxime: --