CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
udev:added forgotten patch
[crossrootfs.git] / udev / start_udev
CommitLineData
6dca1d21
JB
1#!/bin/sh
2
455f0b4b 3# - if /dev is not mounted - mount as a devtmpfs (CONFIG_DEVTMPFS=y)
1dda3c1b
VM
4# - if /dev is mounted (e.g. due to handover from initramfs or
5# CONFIG_DEVTMPFS_MOUNT=y), remount with specific options
6# - some video drivers require exec access in /dev, thus it's set here
7# - for completness, we add few sanity limits (2k non-empty files, 16k inodes)
6dca1d21 8
1dda3c1b
VM
9UDEVOPTS="exec,nosuid,noatime,mode=0755,nr_blocks=2048,nr_inodes=16384"
10if /bin/mountpoint -q /dev ; then
11 /bin/mount -n -o remount,${UDEVOPTS} dev /dev
12else
455f0b4b 13 /bin/mount -n -t devtmpfs -o ${UDEVOPTS} dev /dev
1dda3c1b
VM
14fi
15
455f0b4b
VM
16# mount /run directory
17/bin/mount -n -t tmpfs -o mode=0755,nosuid,nodev,exec tmpfs /run
18
1dda3c1b 19# make sure hotplugger is not set
6dca1d21
JB
20echo > /proc/sys/kernel/hotplug
21
1dda3c1b
VM
22# since v155, udevd automatically copies /lib/udev/devices
23# and creates /proc/{kcore,self/fd/{0,1,2}} symlinks
6dca1d21 24
1dda3c1b
VM
25# launch udev daemon, make sure it's not running first
26test -z "$(/bin/pidof -s udevd)" && /sbin/udevd --daemon
6dca1d21
JB
27
28# coldplug devices and wait for the queue to be processed
1dda3c1b
VM
29/sbin/udevadm trigger --type=subsystems --action=add
30/sbin/udevadm trigger --type=devices --action=add
31/sbin/udevadm settle
32