mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

58 lines
1.3 KiB

BINLIST="
sbin/udevd
sbin/udevcontrol
sbin/udevsettle
sbin/udevtrigger
usr/bin/udevinfo
usr/bin/udevtest
"
for x in $BINLIST
do
add_with_deps $rootdir/$x /$x
done
cat <<EOF
dir /etc/udev 0755 0 0
dir /etc/udev/rules.d 0755 0 0
file /etc/udev/udev.conf $rootdir/etc/udev/udev.conf 644 0 0
dir /lib/udev 0755 0 0
dir /lib/udev/devices 0755 0 0
dir /lib/udev/devices/bus 0755 0 0
dir /lib/udev/devices/bus/usb 0755 0 0
dir /lib/udev/devices/pts 0755 0 0
dir /lib/udev/devices/shm 0755 0 0
nod /lib/udev/devices/console 0600 0 0 c 5 1
nod /lib/udev/devices/null 0666 0 0 c 1 3
pipe /lib/udev/devices/initctl 600 0 0
slink /lib/udev/devices/fd /proc/self/fd 755 0 0
slink /lib/udev/devices/core /proc/kcore 755 0 0
slink /lib/udev/devices/stdin /proc/self/fd/0 755 0 0
slink /lib/udev/devices/stdout /proc/self/fd/1 755 0 0
slink /lib/udev/devices/stderr /proc/self/fd/2 755 0 0
# supress udev uid/gid warnings
file /etc/passwd $rootdir/etc/passwd 644 0 0
file /etc/group $rootdir/etc/group 644 0 0
EOF
(
cd $rootdir
# supress udev uid/gid warnings
find lib -maxdepth 1 -name "libnss_files.so.*" | while read x
do
echo "file $x $rootdir/$x 644 0 0"
done
find etc/udev/rules.d -maxdepth 1 -type f | while read x
do
echo "file $x $rootdir/$x 644 0 0"
done
find lib/udev -maxdepth 1 -type f | while read x
do
add_with_deps $rootdir/$x /$x
done
)