aboutsummaryrefslogtreecommitdiff
path: root/tools/udevadm
blob: a284905f6004dd5359b332073e380c667f0be69b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

# Replaces "udevadm settle" that doesn't work in containers

(
cd /dev
while read line
do
	dev=$(echo "$line"|awk '{print $1}')
	[ -b "$dev" ] || mknod $line
done < <( awk '/[0-9]$/ {print $4" b "$1" "$2}' < /proc/partitions )
)