Avoid dummy0 interface being created #1559
Replies: 7 comments
-
It's not a feature of the layer, it's a kernel feature that NVIDIA enables in their kernel config by default. I don't know why they do that, since I don't think there's anything in the system that depends on this feature, so you could add a kernel config fragment to turn it off. |
Beta Was this translation helpful? Give feedback.
-
So in short, should I create a bitbake bbappend that adds a patch that changes |
Beta Was this translation helpful? Give feedback.
-
Ive tried this but no success:
orin.cfg:
|
Beta Was this translation helpful? Give feedback.
-
Don't mess with |
Beta Was this translation helpful? Give feedback.
-
linux-tegra_5.10%.bbappend:
patch:
Where do I exactly find the logs? |
Beta Was this translation helpful? Give feedback.
-
Check log.do_kernel_configme, and other logs, in the same temp folder you identified above for more hints about what might be happening. Your original config fragment, if only you had just applied it to SRC_URI, looks like it should have worked. |
Beta Was this translation helpful? Give feedback.
-
Besides the log files, you can directly check the resultant Kernel config file. The path is: You can add a fragment in two steps:
Note: I think it's important to add a comment in the first line because the first line is not parsed as a config directive.
Then, rebuild your Kernel config:
And see the result in Alternatively to the fragment approach, and in case you don't want to trim the Dummy functionality, you can add a Kernel argument.
|
Beta Was this translation helpful? Give feedback.
-
Hi, my custom image built using meta-tegra is, for some reason, creating a
dummy0
interface:Is this a meta-tegra feature? How can I avoid it in build time? (Runtime I can just do
ip link delete dummy0
)Beta Was this translation helpful? Give feedback.
All reactions