comparison core/eudev/udevd @ 1320:498f92bb635e

core/eudev: upgrade to 3.2.10
author David Demelier <markand@malikania.fr>
date Sun, 21 Nov 2021 10:02:17 +0100
parents 3dfef64b81c1
children
comparison
equal deleted inserted replaced
1319:0336225300e5 1320:498f92bb635e
1 #!/bin/busybox sh 1 #!/bin/sh
2 # 2 #
3 # /etc/rc.d/udevd -- run control script for eudev 3 # /etc/init.d/udevd -- run control script for eudev
4 # 4 #
5 # Copyright (c) 2019 David Demelier <markand@malikania.fr> 5 # Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
6 # 6 #
7 # Permission to use, copy, modify, and/or distribute this software for any 7 # Permission to use, copy, modify, and/or distribute this software for any
8 # purpose with or without fee is hereby granted, provided that the above 8 # purpose with or without fee is hereby granted, provided that the above
9 # copyright notice and this permission notice appear in all copies. 9 # copyright notice and this permission notice appear in all copies.
10 # 10 #
15 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 15 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 16 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 17 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 # 18 #
19 19
20 if [ -f /etc/rc.conf ]; then 20 if [ -f /etc/vinit.conf ]; then
21 . /etc/rc.conf 21 . /etc/vinit.conf
22 fi 22 fi
23 23
24 : ${UDEVD_CMD:=/bin/udevd} 24 : ${UDEVD_CMD:=/bin/udevd}
25 : ${UDEVD_ARGS:=--daemon} 25 : ${UDEVD_ARGS:=--daemon}
26 26