commit | 7e4b66aa8743aca134883d0ebc42535ce43ecf25 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Tue Feb 08 11:49:53 2022 -0700 |
committer | Simon Glass <sjg@chromium.org> | Tue Feb 22 10:05:44 2022 -0700 |
tree | faaab66a3d2a9c78335b929e24dc8b39101974f8 | |
parent | dd857ee7614fea27de3eb6dbd87749a9640c69b1 [diff] |
dtoc: Support reading a list of arguments It is helpful to support a string or stringlist containing a list of space-separated arguments, for example: args = "-n fred", "-a", "123"; This resolves to the list: -n fred -a 123 which can be passed to a program as arguments. Add a helper to do the required processing. Signed-off-by: Simon Glass <sjg@chromium.org>