summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* re-arrange variable settingsWilliam Hubbs2013-03-191-11/+6
| | | | | | | | | Move the settings for udevmonitor_pid and udevmonitor_log to global scope since they are used in two functions. Also, we do not need to set the rc_coldplug, udev_debug, udev_monitor_keep_running and udev_settle_timeout to their default values in global scope; we can just use the default values when we refer to the variables.
* udev: fix permissions and symlinks when rc_coldplug="no"Lars Wendler2013-03-191-0/+2
| | | | | | | | Modification by William Hubbs: I added an einfo to inform users that symbolic links and permissions are being set. X-Gentoo-Bug: 461838 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=461838
* increment versionWilliam Hubbs2013-03-191-1/+1
|
* increment version24William Hubbs2013-02-271-1/+1
|
* udev: skip "udevadm trigger" calls if coldplug sequence is not requestedWilliam Hubbs2013-02-271-8/+5
| | | | | | Reported-by: matthew4196@gmail.com X-Gentoo-Bug: 424189 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=424189
* init.d/udev: remove kernel version checks23William Hubbs2013-02-041-46/+0
| | | | | | | | Udev does not actively block people from attempting to run on older versions of the kernel, so we shouldn't either. X-Gentoo-Bug: 454324 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=454324
* increment versionWilliam Hubbs2013-02-041-1/+1
|
* bump kernel version requirement22William Hubbs2013-01-271-1/+1
| | | | | | | Modern udev requires at least kernel 2.6.39, so adjust the version in this script. https://bugs.gentoo.org/show_bug.cgi?id=454324
* move disable_oldnet_hotplug above start_preWilliam Hubbs2013-01-271-13/+13
| | | | | This function is used in start_pre, so move it to reflect that. Code is easier to follow if it is defined before it is used.
* Fix population of /run/udev/rules.d for newnetMike Gilbert2013-01-271-2/+7
| | | | | | | | * Create /run/udev/rules.d before dropping files in place. * Move disable_oldnet_hotplug to start_pre so that it is done before starting the daemon http://bugs.gentoo.org/453656
* increment versionWilliam Hubbs2013-01-271-1/+1
|
* Add code to stop udevd if udevadm control --exit fails21William Hubbs2013-01-211-1/+9
| | | | Thanks to Nikoli for pointing this out.
* increment versionWilliam Hubbs2013-01-211-1/+1
|
* udev: only run the executable20William Hubbs2013-01-211-1/+1
| | | | Thanks to Samuli Suominen for catching this.
* increment versionWilliam Hubbs2013-01-211-1/+1
|
* increment version to 1919William Hubbs2013-01-081-1/+1
|
* build: use pkg-configWilliam Hubbs2013-01-081-1/+1
|
* udev: return error if unable to find executableWilliam Hubbs2013-01-081-2/+3
|
* udev: start udev from /lib/systemd if it exists there.William Hubbs2013-01-081-4/+8
|
* update copyright noticesWilliam Hubbs2013-01-042-2/+2
|
* udev: fail if unable to load the socket moduleWilliam Hubbs2013-01-041-0/+1
|
* udev: move the code to search for the binary to start_preWilliam Hubbs2013-01-041-6/+7
| | | | | This does not need to be in global scope since the only place the command variable is used is the start function.
* udev: add a stop functionWilliam Hubbs2013-01-041-0/+7
| | | | | | The udev init script should use "udevadm control --exit" as the way to stop udev, so this adds a custom stop function. Thanks to Mike Gilbert <floppym@gentoo.org> for pointing this out.
* udev: start /sbin/udevd if it exists18William Hubbs2012-11-231-1/+6
| | | | | | | | This was added so that the eudev fork can use the udev-init-scriptss package. X-Gentoo-Bug: 444396 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=444396
* Start work on version 18William Hubbs2012-11-231-1/+1
|
* Release udev-init-scripts-1717William Hubbs2012-10-191-1/+1
|
* init.d/udev*: dev-mount virtual depRobin H. Johnson2012-09-262-0/+3
| | | | | | Add in the dev-mount virtual dep for the tmpfiles.d work. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
* release udev-init-scripts-1616William Hubbs2012-08-081-1/+1
|
* Revert "move back to /lib/udev"William Hubbs2012-08-082-2/+2
| | | | | | This reverts commit c21655268bd42d668a1d01460133f93deaa1b3a8. Packages in gentoo are being updated to install things in /usr/lib/udev where they belong.
* release udev-init-scripts-1515William Hubbs2012-08-071-1/+1
|
* clean up makefileWilliam Hubbs2012-08-071-9/+8
|
* move back to /lib/udevWilliam Hubbs2012-08-072-2/+2
| | | | | For now the best option for gentoo is going to be not to move /lib/systemd/systemd-udevd and /lib/udev to /usr.
* release udev-init-scripts-1414William Hubbs2012-08-011-1/+1
|
* Add reload command for bug #403217William Hubbs2012-08-011-0/+9
|
* always wait for ueventsWilliam Hubbs2012-07-312-10/+3
| | | | | I was advised by upstream that we always need to wait for uevents, so make the wait mandatory.
* install rules and helpers in /usr/lib/udevWilliam Hubbs2012-07-311-1/+1
|
* Allow an optional wait for uevent processingWilliam Hubbs2012-07-312-1/+14
| | | | | Systemd allows the wait for uevents during boot to be optional, so we should do the same.
* release udev-init-scripts-1313William Hubbs2012-07-291-1/+1
|
* udev: remove code that waits for uevents to processWilliam Hubbs2012-07-162-13/+0
| | | | | According to discussions I have seen on the #udev irc channel, this should no longer be necessary.
* update documentation for the locations of log filesWilliam Hubbs2012-07-121-5/+2
| | | | | Fix conf.d/udev to reflect the correct locations of the log files created by udev_debug and udev_monitor
* abort if the kernel version is too oldWilliam Hubbs2012-07-121-0/+1
|
* disable oldnet hotplug after udev startsWilliam Hubbs2012-07-121-17/+21
| | | | | The /run/udev/rules.d directory does not exist until after udev starts, so we can't disable hotplugging until then.
* remove get_rundir functionWilliam Hubbs2012-07-121-14/+4
| | | | | In>=udev-186, /run is assumed to exist, and the udevadm info --run option is no longer valid.
* release udev-init-scripts-1212William Hubbs2012-07-041-1/+1
|
* remove check_udev_works and cleanup functionsWilliam Hubbs2012-07-041-18/+0
| | | | | | | The check_udev_works function used a test which is no longer valid since udev doesn't create device nodes. Also, there is not a need for the cleanup function since if udev doesn't start start_post will never be called.
* add caching to get_rundirWilliam Hubbs2012-07-041-1/+6
| | | | | The get_rundir function should only run udevadm the first time it is called.
* udev-mount: remove selinux codeWilliam Hubbs2012-07-011-10/+0
| | | | | | I was advised that this code is no longer needed since this issue is being controlled by the selinux policy. Thanks to Sven Vermeulen.
* Drop the write_root_link_rule helperWilliam Hubbs2012-06-303-33/+1
| | | | | This udev helper created /dev/root, which was a link to the root device. However, this should not be needed.
* remove udev-postmountWilliam Hubbs2012-06-302-70/+0
| | | | | Since the persistent net and cd rules generators are removed, there is no longer a function for udev-postmount.
* do not create /run/udevWilliam Hubbs2012-06-301-4/+0
| | | | We do not need to create this directory since udev handles it.