Re: Loading libBSD driver modules

2019-07-21 Thread Sebastian Huber
Hello Nils, yes, you can add devices after initialization. For example: int my_attach(void) { device_t dev; device_t child; dev = device_find_child(root_bus, "nexus", 0); if (dev == NULL) { return ENXIO; } child = device_add_child

Re: Loading libBSD driver modules

2019-07-21 Thread Chris Johns
On 21/7/19 8:55 pm, Nils Hölscher wrote: > Is there a way to load libBSD driver modules one by one? > Currently rtems loads all drivers at once with rtems_bsd_initialize. > But I need to debug via network, so I need to have libBSD network support > before > loading my PRU driver Module. Sorry I d