25 lines
329 B
Bash
25 lines
329 B
Bash
#!/bin/sh -e
|
|
# initramfs premount script for udev
|
|
|
|
PREREQ=""
|
|
|
|
# Output pre-requisites
|
|
prereqs()
|
|
{
|
|
echo "$PREREQ"
|
|
}
|
|
|
|
case "$1" in
|
|
prereqs)
|
|
prereqs
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
|
|
# Stop udevd, we'll miss a few events while we run init, but we catch up
|
|
pkill udevd
|
|
|
|
# Move /dev to the real filesystem
|
|
mount -n -o move /dev ${rootmnt}/dev
|