You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got some problems parsing DTs of the current linux kernel. It turns out, they use the undocumented keywords. E.g /omit-if-no-ref/,/bits/. At least some of them are documented here: https://elinux.org/Device_Tree_Source_Undocumented
We might implement this. Right now I am just removing them beforehand.
s = re.sub(r'.*/omit-if-no-ref/.*;','',s)
s = re.sub(r'/omit-if-no-ref/', '', s)
s = re.sub(r'.*/bits/.*;', '', s)
The text was updated successfully, but these errors were encountered:
I got some problems parsing DTs of the current linux kernel. It turns out, they use the undocumented keywords. E.g
/omit-if-no-ref/
,/bits/
. At least some of them are documented here: https://elinux.org/Device_Tree_Source_UndocumentedWe might implement this. Right now I am just removing them beforehand.
The text was updated successfully, but these errors were encountered: