diff options
author | Yegor Yefremov <yegorslists@googlemail.com> | 2012-02-08 10:50:25 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-02-08 21:56:47 +0100 |
commit | f94818b0fa77644b989bab5aa0866de7fe4ffbb1 (patch) | |
tree | f9e546a1b383169652b918e2994de494d31f3b5d /package/udev/S10udev | |
parent | d390906f667ec9486e5a4f29d3e5a2c6a938d62c (diff) | |
download | buildroot-novena-f94818b0fa77644b989bab5aa0866de7fe4ffbb1.tar.gz buildroot-novena-f94818b0fa77644b989bab5aa0866de7fe4ffbb1.zip |
udev: bump to 181 and other fixes
Changes:
- Linux kernel requirement: 2.6.34 and above (devtmpfs is mandatory)
(this also applies to the chosen toolchain, because of Kernel headers)
- optional dependency on libusb and usbutils removed
- added dependency on kmod
- added dependency on util-linux for libblkid
- install in /lib/udev instead of /usr/libexec/udev
- udevd moved to /lib/udev
- fixed path to pci.ids and usb.ids
- persistent rules generator is disabled by default, so option
is introduced to enable this option if desired
[Peter: fix build on uClibc, Config.in tweaks]
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/udev/S10udev')
-rwxr-xr-x | package/udev/S10udev | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/udev/S10udev b/package/udev/S10udev index 29eb1075c..70a7c3422 100755 --- a/package/udev/S10udev +++ b/package/udev/S10udev @@ -2,7 +2,7 @@ # # udev This is a minimal non-LSB version of a UDEV startup script. It # was derived by stripping down the udev-058 LSB version for use -# with buildroot on embedded hardware using Linux 2.6.12+ kernels. +# with buildroot on embedded hardware using Linux 2.6.34+ kernels. # # You may need to customize this for your system's resource limits # (including startup time!) and administration. For example, if @@ -17,7 +17,7 @@ # # Check for missing binaries -UDEV_BIN=/sbin/udevd +UDEV_BIN=/lib/udev/udevd test -x $UDEV_BIN || exit 5 # Check for config file and read it |