* Re: using labels for stdout-path [not found] ` <20170511130545.co6pyyvlwuitbyne-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> @ 2017-05-11 15:49 ` Rob Herring [not found] ` <CAL_JsqL66sWFovGhYGaA_sB_pnvTrjyaQ7MW3=5pkD5Qwb6y_w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 0 siblings, 1 reply; 5+ messages in thread From: Rob Herring @ 2017-05-11 15:49 UTC (permalink / raw) To: Uwe Kleine-König Cc: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, kernel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org, devicetree-compiler-u79uwXL29TY76Z2rM5mHXA +dtc list because labels are purely dts syntax. On Thu, May 11, 2017 at 8:05 AM, Uwe Kleine-König <u.kleine-koenig-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> wrote: > Hello, > > on an i.MX28 based machine I want to have the console on &duart with > 115200 Bd, 8 Bit, no parity. > > The options for that are AFAICT: > > - use an alias, like: > > stdout-path = "serialX:115200n8"; > > the problem here is, that the duart doesn't have an alias. I guess I > shouldn't introduce a new one for my setup? > > - use a label, like: > > stdout-path = &duart, ":115200n8"; > > This would be the prettiest, but that doesn't work, because there is > a '\0' separating the path and the options. You could make that work changing the kernel parsing, but that's probably not a good option if we ever want to support more than 1 out path. > - use the full path, like: > > stdout-path = "/apb@80000000/apbx@80040000/serial@80074000:115200n8"; > > This is ugly. > > Do I miss something? Is that worth to introduce new syntax, maybe > > stdout-path = &duart . ":115200n8"; > > or similar? Seems like we should make a comma be significant in splitting strings. I'm not sure if there's anything relying on "foo" "bar" and "foo", "bar" being the same. At least for numbers, a comma has no meaning, so it would complicate the parsing I'd imagine. Not really an area I'm familiar with. Rob -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 5+ messages in thread
[parent not found: <CAL_JsqL66sWFovGhYGaA_sB_pnvTrjyaQ7MW3=5pkD5Qwb6y_w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: using labels for stdout-path [not found] ` <CAL_JsqL66sWFovGhYGaA_sB_pnvTrjyaQ7MW3=5pkD5Qwb6y_w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2017-05-11 18:40 ` Uwe Kleine-König [not found] ` <20170511184023.oi4bwwrutllexjen-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 0 siblings, 1 reply; 5+ messages in thread From: Uwe Kleine-König @ 2017-05-11 18:40 UTC (permalink / raw) To: Rob Herring Cc: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, kernel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org, devicetree-compiler-u79uwXL29TY76Z2rM5mHXA Hello, On Thu, May 11, 2017 at 10:49:15AM -0500, Rob Herring wrote: > +dtc list because labels are purely dts syntax. Ah, I wasn't aware that there is a separate list for that. Thanks. > On Thu, May 11, 2017 at 8:05 AM, Uwe Kleine-König > <u.kleine-koenig-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> wrote: > > Hello, > > > > on an i.MX28 based machine I want to have the console on &duart with > > 115200 Bd, 8 Bit, no parity. > > > > The options for that are AFAICT: > > > > - use an alias, like: > > > > stdout-path = "serialX:115200n8"; > > > > the problem here is, that the duart doesn't have an alias. I guess I > > shouldn't introduce a new one for my setup? > > > > - use a label, like: > > > > stdout-path = &duart, ":115200n8"; > > > > This would be the prettiest, but that doesn't work, because there is > > a '\0' separating the path and the options. > > You could make that work changing the kernel parsing, but that's > probably not a good option if we ever want to support more than 1 out > path. Good point. That's a good reason to not use this syntax. > > - use the full path, like: > > > > stdout-path = "/apb@80000000/apbx@80040000/serial@80074000:115200n8"; > > > > This is ugly. > > > > Do I miss something? Is that worth to introduce new syntax, maybe > > > > stdout-path = &duart . ":115200n8"; > > > > or similar? > > Seems like we should make a comma be significant in splitting strings. > I'm not sure if there's anything relying on "foo" "bar" and "foo", > "bar" being the same. At least for numbers, a comma has no meaning, so > it would complicate the parsing I'd imagine. Not really an area I'm > familiar with. "foo" "bar" is a syntax error now (and another obvious candidate for string concatination). So writing in the dts stdout-path = &duart ":115200n8"; and getting the same result as stdout-path = "/apb@80000000/apbx@80040000/serial@80074000:115200n8"; looks nicely and consistent with stdout-path = &duart; being equivalent to stdout-path = "/apb@80000000/apbx@80040000/serial@80074000"; After a quick look into the dtc sources I imagine that wouldn't be too hard to implement for someone being fluent in lex and yacc. And probably it would be cheap to add the other obvious extensions like: property = < 0x12 0x43 > "a string" &label /incbin/(filename); Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König | Industrial Linux Solutions | http://www.pengutronix.de/ | ^ permalink raw reply [flat|nested] 5+ messages in thread
[parent not found: <20170511184023.oi4bwwrutllexjen-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>]
* Re: using labels for stdout-path [not found] ` <20170511184023.oi4bwwrutllexjen-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> @ 2017-05-12 3:48 ` David Gibson [not found] ` <20170512034816.GA12908-K0bRW+63XPQe6aEkudXLsA@public.gmane.org> 0 siblings, 1 reply; 5+ messages in thread From: David Gibson @ 2017-05-12 3:48 UTC (permalink / raw) To: Uwe Kleine-König Cc: Rob Herring, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, kernel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org, devicetree-compiler-u79uwXL29TY76Z2rM5mHXA [-- Attachment #1: Type: text/plain, Size: 5027 bytes --] On Thu, May 11, 2017 at 08:40:23PM +0200, Uwe Kleine-König wrote: > Hello, > > On Thu, May 11, 2017 at 10:49:15AM -0500, Rob Herring wrote: > > +dtc list because labels are purely dts syntax. > > Ah, I wasn't aware that there is a separate list for that. Thanks. > > > On Thu, May 11, 2017 at 8:05 AM, Uwe Kleine-König > > <u.kleine-koenig-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> wrote: > > > Hello, > > > > > > on an i.MX28 based machine I want to have the console on &duart with > > > 115200 Bd, 8 Bit, no parity. > > > > > > The options for that are AFAICT: > > > > > > - use an alias, like: > > > > > > stdout-path = "serialX:115200n8"; > > > > > > the problem here is, that the duart doesn't have an alias. I guess I > > > shouldn't introduce a new one for my setup? > > > > > > - use a label, like: > > > > > > stdout-path = &duart, ":115200n8"; > > > > > > This would be the prettiest, but that doesn't work, because there is > > > a '\0' separating the path and the options. > > > > You could make that work changing the kernel parsing, but that's > > probably not a good option if we ever want to support more than 1 out > > path. > > Good point. That's a good reason to not use this syntax. Yes, changing the actual property format is a bad idea. > > > - use the full path, like: > > > > > > stdout-path = "/apb@80000000/apbx@80040000/serial@80074000:115200n8"; > > > > > > This is ugly. > > > > > > Do I miss something? Is that worth to introduce new syntax, maybe > > > > > > stdout-path = &duart . ":115200n8"; > > > > > > or similar? > > > > Seems like we should make a comma be significant in splitting strings. > > I'm not sure if there's anything relying on "foo" "bar" and "foo", > > "bar" being the same. At least for numbers, a comma has no meaning, so > > it would complicate the parsing I'd imagine. Not really an area I'm > > familiar with. > > "foo" "bar" is a syntax error now (and another obvious candidate for > string concatination). So writing in the dts Right. "foo" "bar" would be my preferred syntax for string concatenation (the main guiding principle for dts syntax is "be like C where possible"). > > stdout-path = &duart ":115200n8"; > > and getting the same result as > > stdout-path = "/apb@80000000/apbx@80040000/serial@80074000:115200n8"; > > looks nicely and consistent with > > stdout-path = &duart; > > being equivalent to > > stdout-path = "/apb@80000000/apbx@80040000/serial@80074000"; > > After a quick look into the dtc sources I imagine that wouldn't be too > hard to implement for someone being fluent in lex and yacc. Unfortunately, there are two complications with this. The more minor one is that an "implicit" operation like this (no actual operator symbol) can make things get a bit curly in the grammar - mostly by allowing potential ambiguity in situations which are obviously different to a human, but not to the parser. The bigger problem is that during the parse which is when we're (for example) evaluating integer expressions, we haven't yet resolved labels. So, we can't expand the reference, we just insert a "marker" in the property bytestring which says to insert the node path later. That means we can't just have simple code to do a string concatenation here. That marker gets expanded later on, once we've resolved all references. Note that this is the same reason you can do: prop = < (1+2+3) &foo >; But you can't do prop = < (&foo + 1) >; There are two ways we could deal with this: 1) The quick and dirty way: special case string append with a reference, so that we insert a new type of marker which will be expaned to the node path without the final \0. 2) The complicated but powerful way: rather than (mostly) constructing the property values as bytestrings at parse time, we just construct the property values as expression trees at parse time, then evaluate those expression trees later on, once we're able to resolve references. Approach (2) has been suggested before. As well as this case it would be a necessary step for allowing defined "functions" (for integers or otherwise) in dtc. It has some nice properties, but it's a rather a lot of work. > And probably > it would be cheap to add the other obvious extensions like: > > property = < 0x12 0x43 > "a string" &label /incbin/(filename); Um.. what? That's not an obvious extension at all. The proposed change is to have (a b) be a string concatenation, but several of the things above aren't strings, so it's not clear what it should do. If you want _bytestring_ concatenation, we already have syntax for that - that's exactly what ',' does in dtc. -- David Gibson | I'll have my music baroque, and my code david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_ | _way_ _around_! http://www.ozlabs.org/~dgibson [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 819 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
[parent not found: <20170512034816.GA12908-K0bRW+63XPQe6aEkudXLsA@public.gmane.org>]
* Re: using labels for stdout-path [not found] ` <20170512034816.GA12908-K0bRW+63XPQe6aEkudXLsA@public.gmane.org> @ 2017-05-12 7:41 ` Uwe Kleine-König [not found] ` <20170512074155.oshpdio2hb7cz377-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 0 siblings, 1 reply; 5+ messages in thread From: Uwe Kleine-König @ 2017-05-12 7:41 UTC (permalink / raw) To: David Gibson Cc: Rob Herring, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, kernel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org, devicetree-compiler-u79uwXL29TY76Z2rM5mHXA Hello David, On Fri, May 12, 2017 at 01:48:16PM +1000, David Gibson wrote: > On Thu, May 11, 2017 at 08:40:23PM +0200, Uwe Kleine-König wrote: > > On Thu, May 11, 2017 at 10:49:15AM -0500, Rob Herring wrote: > > > On Thu, May 11, 2017 at 8:05 AM, Uwe Kleine-König > > > <u.kleine-koenig-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> wrote: > > > > Hello, > > > > > > > > on an i.MX28 based machine I want to have the console on &duart with > > > > 115200 Bd, 8 Bit, no parity. > > > > > > > > The options for that are AFAICT: > > > > > > > > - use an alias, like: > > > > > > > > stdout-path = "serialX:115200n8"; > > > > > > > > the problem here is, that the duart doesn't have an alias. I guess I > > > > shouldn't introduce a new one for my setup? > > > > > > > > - use a label, like: > > > > > > > > stdout-path = &duart, ":115200n8"; > > > > > > > > This would be the prettiest, but that doesn't work, because there is > > > > a '\0' separating the path and the options. > > > > > > You could make that work changing the kernel parsing, but that's > > > probably not a good option if we ever want to support more than 1 out > > > path. > > > > Good point. That's a good reason to not use this syntax. > > Yes, changing the actual property format is a bad idea. > > > > > - use the full path, like: > > > > > > > > stdout-path = "/apb@80000000/apbx@80040000/serial@80074000:115200n8"; > > > > > > > > This is ugly. > > > > > > > > Do I miss something? Is that worth to introduce new syntax, maybe > > > > > > > > stdout-path = &duart . ":115200n8"; > > > > > > > > or similar? > > > > > > Seems like we should make a comma be significant in splitting strings. > > > I'm not sure if there's anything relying on "foo" "bar" and "foo", > > > "bar" being the same. At least for numbers, a comma has no meaning, so > > > it would complicate the parsing I'd imagine. Not really an area I'm > > > familiar with. > > > > "foo" "bar" is a syntax error now (and another obvious candidate for > > string concatination). So writing in the dts > > Right. "foo" "bar" would be my preferred syntax for string > concatenation (the main guiding principle for dts syntax is "be like C > where possible"). > > > > > stdout-path = &duart ":115200n8"; > > > > and getting the same result as > > > > stdout-path = "/apb@80000000/apbx@80040000/serial@80074000:115200n8"; > > > > looks nicely and consistent with > > > > stdout-path = &duart; > > > > being equivalent to > > > > stdout-path = "/apb@80000000/apbx@80040000/serial@80074000"; > > > > After a quick look into the dtc sources I imagine that wouldn't be too > > hard to implement for someone being fluent in lex and yacc. > > Unfortunately, there are two complications with this. The more minor > one is that an "implicit" operation like this (no actual operator > symbol) can make things get a bit curly in the grammar - mostly by > allowing potential ambiguity in situations which are obviously > different to a human, but not to the parser. /me remembers his algorithms courses about ambiguous grammars and mumbles something about left and right recursion. > The bigger problem is that during the parse which is when we're (for > example) evaluating integer expressions, we haven't yet resolved > labels. So, we can't expand the reference, we just insert a "marker" > in the property bytestring which says to insert the node path later. > That means we can't just have simple code to do a string concatenation > here. That marker gets expanded later on, once we've resolved all > references. > > Note that this is the same reason you can do: > prop = < (1+2+3) &foo >; > But you can't do > prop = < (&foo + 1) >; > > There are two ways we could deal with this: > > 1) The quick and dirty way: special case string append with a > reference, so that we insert a new type of marker which will be > expaned to the node path without the final \0. > > 2) The complicated but powerful way: rather than (mostly) > constructing the property values as bytestrings at parse time, we > just construct the property values as expression trees at parse > time, then evaluate those expression trees later on, once we're > able to resolve references. > > Approach (2) has been suggested before. As well as this case it would > be a necessary step for allowing defined "functions" (for integers or > otherwise) in dtc. It has some nice properties, but it's a rather a > lot of work. lex and yacc are great, but I'm not into them to be of help here :-| > > And probably > > it would be cheap to add the other obvious extensions like: > > > > property = < 0x12 0x43 > "a string" &label /incbin/(filename); > > Um.. what? That's not an obvious extension at all. The proposed > change is to have (a b) be a string concatenation, but several of the > things above aren't strings, so it's not clear what it should do. If > you want _bytestring_ concatenation, we already have syntax for that - > that's exactly what ',' does in dtc. When compiling and then decompiling a node that contains property = < 0x41424344 0x45464700 >; I get property = "ABCDEFG"; in the dts output. So I assumed that strings and arrays are just different syntactic ways to define a value and so concatenation would work for both the same way. Now thinking a bit more there are some problems that are likely solved best by not allowing concatenation for arrays and binary data. Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König | Industrial Linux Solutions | http://www.pengutronix.de/ | ^ permalink raw reply [flat|nested] 5+ messages in thread
[parent not found: <20170512074155.oshpdio2hb7cz377-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>]
* Re: using labels for stdout-path [not found] ` <20170512074155.oshpdio2hb7cz377-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> @ 2017-05-13 8:29 ` David Gibson 0 siblings, 0 replies; 5+ messages in thread From: David Gibson @ 2017-05-13 8:29 UTC (permalink / raw) To: Uwe Kleine-König Cc: Rob Herring, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, kernel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org, devicetree-compiler-u79uwXL29TY76Z2rM5mHXA [-- Attachment #1: Type: text/plain, Size: 7750 bytes --] On Fri, May 12, 2017 at 09:41:55AM +0200, Uwe Kleine-König wrote: > Hello David, > > On Fri, May 12, 2017 at 01:48:16PM +1000, David Gibson wrote: > > On Thu, May 11, 2017 at 08:40:23PM +0200, Uwe Kleine-König wrote: > > > On Thu, May 11, 2017 at 10:49:15AM -0500, Rob Herring wrote: > > > > On Thu, May 11, 2017 at 8:05 AM, Uwe Kleine-König > > > > <u.kleine-koenig-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> wrote: > > > > > Hello, > > > > > > > > > > on an i.MX28 based machine I want to have the console on &duart with > > > > > 115200 Bd, 8 Bit, no parity. > > > > > > > > > > The options for that are AFAICT: > > > > > > > > > > - use an alias, like: > > > > > > > > > > stdout-path = "serialX:115200n8"; > > > > > > > > > > the problem here is, that the duart doesn't have an alias. I guess I > > > > > shouldn't introduce a new one for my setup? > > > > > > > > > > - use a label, like: > > > > > > > > > > stdout-path = &duart, ":115200n8"; > > > > > > > > > > This would be the prettiest, but that doesn't work, because there is > > > > > a '\0' separating the path and the options. > > > > > > > > You could make that work changing the kernel parsing, but that's > > > > probably not a good option if we ever want to support more than 1 out > > > > path. > > > > > > Good point. That's a good reason to not use this syntax. > > > > Yes, changing the actual property format is a bad idea. > > > > > > > - use the full path, like: > > > > > > > > > > stdout-path = "/apb@80000000/apbx@80040000/serial@80074000:115200n8"; > > > > > > > > > > This is ugly. > > > > > > > > > > Do I miss something? Is that worth to introduce new syntax, maybe > > > > > > > > > > stdout-path = &duart . ":115200n8"; > > > > > > > > > > or similar? > > > > > > > > Seems like we should make a comma be significant in splitting strings. > > > > I'm not sure if there's anything relying on "foo" "bar" and "foo", > > > > "bar" being the same. At least for numbers, a comma has no meaning, so > > > > it would complicate the parsing I'd imagine. Not really an area I'm > > > > familiar with. > > > > > > "foo" "bar" is a syntax error now (and another obvious candidate for > > > string concatination). So writing in the dts > > > > Right. "foo" "bar" would be my preferred syntax for string > > concatenation (the main guiding principle for dts syntax is "be like C > > where possible"). > > > > > > > > stdout-path = &duart ":115200n8"; > > > > > > and getting the same result as > > > > > > stdout-path = "/apb@80000000/apbx@80040000/serial@80074000:115200n8"; > > > > > > looks nicely and consistent with > > > > > > stdout-path = &duart; > > > > > > being equivalent to > > > > > > stdout-path = "/apb@80000000/apbx@80040000/serial@80074000"; > > > > > > After a quick look into the dtc sources I imagine that wouldn't be too > > > hard to implement for someone being fluent in lex and yacc. > > > > Unfortunately, there are two complications with this. The more minor > > one is that an "implicit" operation like this (no actual operator > > symbol) can make things get a bit curly in the grammar - mostly by > > allowing potential ambiguity in situations which are obviously > > different to a human, but not to the parser. > > /me remembers his algorithms courses about ambiguous grammars and > mumbles something about left and right recursion. I'm being fairly sloppy with my terminology here. But the point is that I've done some experimenting here, and having an implicit operator like this can make things awkward. > > The bigger problem is that during the parse which is when we're (for > > example) evaluating integer expressions, we haven't yet resolved > > labels. So, we can't expand the reference, we just insert a "marker" > > in the property bytestring which says to insert the node path later. > > That means we can't just have simple code to do a string concatenation > > here. That marker gets expanded later on, once we've resolved all > > references. > > > > Note that this is the same reason you can do: > > prop = < (1+2+3) &foo >; > > But you can't do > > prop = < (&foo + 1) >; > > > > There are two ways we could deal with this: > > > > 1) The quick and dirty way: special case string append with a > > reference, so that we insert a new type of marker which will be > > expaned to the node path without the final \0. > > > > 2) The complicated but powerful way: rather than (mostly) > > constructing the property values as bytestrings at parse time, we > > just construct the property values as expression trees at parse > > time, then evaluate those expression trees later on, once we're > > able to resolve references. > > > > Approach (2) has been suggested before. As well as this case it would > > be a necessary step for allowing defined "functions" (for integers or > > otherwise) in dtc. It has some nice properties, but it's a rather a > > lot of work. > > lex and yacc are great, but I'm not into them to be of help here :-| Most of the work here is not lex and yacc at all. In fact for converting the existing integer expression stuff, all the grammar is there already - it's a matter of making the data structure to represent the expression tree and the code to evaluate it. > > > And probably > > > it would be cheap to add the other obvious extensions like: > > > > > > property = < 0x12 0x43 > "a string" &label /incbin/(filename); > > > > Um.. what? That's not an obvious extension at all. The proposed > > change is to have (a b) be a string concatenation, but several of the > > things above aren't strings, so it's not clear what it should do. If > > you want _bytestring_ concatenation, we already have syntax for that - > > that's exactly what ',' does in dtc. > > When compiling and then decompiling a node that contains > > property = < 0x41424344 0x45464700 >; > > I get > > property = "ABCDEFG"; > > in the dts output. So I assumed that strings and arrays are just > different syntactic ways to define a value and so concatenation would > work for both the same way. So, in a sense, yes - all properties are bytestrings in the end. But you're *not* asking for them to work the same way. Above we have strict bytewise concatenation, but for strings you want string-aware concatenation (removing the \0 from the first string). ',' already does bytestring concatenation for arrays, strings, bytestrings, whatever. e.g. prop = "ab", <0x41424344>, [00]; is equivalent to prop = <0x61620041 0x42434400>; is equivalent to prop = "ab\0ABCD"; is equivalent to prop = [6162004142434400]; In terms of reading, the stuff that appears within < ... > is a different grammatical context to what's outside it - the rules may be different. Indeed, integers aren't valid at all outside < ... >. I usually think of < ... > as a special operator which takes a bunch of integers and returns a bytestring. In a similar way "..." takes a string and produces a bytestring (by de-escaping and adding \0) and [...] takes a bunch of hex digits and produces a bytestring. > Now thinking a bit more there are some > problems that are likely solved best by not allowing concatenation for > arrays and binary data. Inside the array, you have integers. Outside the array, it *is* binary data, just like everything else. -- David Gibson | I'll have my music baroque, and my code david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_ | _way_ _around_! http://www.ozlabs.org/~dgibson [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 819 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2017-05-13 8:29 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <20170511130545.co6pyyvlwuitbyne@pengutronix.de> [not found] ` <20170511130545.co6pyyvlwuitbyne-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 2017-05-11 15:49 ` using labels for stdout-path Rob Herring [not found] ` <CAL_JsqL66sWFovGhYGaA_sB_pnvTrjyaQ7MW3=5pkD5Qwb6y_w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2017-05-11 18:40 ` Uwe Kleine-König [not found] ` <20170511184023.oi4bwwrutllexjen-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 2017-05-12 3:48 ` David Gibson [not found] ` <20170512034816.GA12908-K0bRW+63XPQe6aEkudXLsA@public.gmane.org> 2017-05-12 7:41 ` Uwe Kleine-König [not found] ` <20170512074155.oshpdio2hb7cz377-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 2017-05-13 8:29 ` David Gibson
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).