0

I run a smart Embedded Linux on a board and I want to create device files, for that I need udev. But Udev needs alot of other small programs or libs. So the question is:

How can I replace the imple function of udev with mdev?

Peter
  • 1,629
  • 2
  • 25
  • 45

1 Answers1

1

mdev is part of the busybox. You can recompile the busybox and install it to your root filesystem, also remove your udev files from the root filesystem

You can follow this thread to configure and write your custom mdev rule.

Thanks

Dien Nguyen
  • 2,019
  • 6
  • 30
  • 37