qubes-linux-kernel/vm-initramfs-pre-pivot/50_mount_modules.sh
Marek Marczykowski 5d31a4cc98 Mount /lib/modules at initramfs phase (#263)
This isn't elegant but /etc/rc.d/rc.sysinit requires modules at very early
phase - before any customizable script (just before calling
/etc/sysconfig/modules/*.modules).
2011-07-03 20:54:19 +02:00

11 lines
229 B
Bash
Executable File

#
# This file should be places in pre-pivot directory in dracut's initramfs
#
#!/bin/sh
echo "Waiting for /dev/xvdd device..."
while ! [ -e /dev/xvdd ]; do sleep 0.1; done
mount -n -t ext3 -o ro /dev/xvdd $NEWROOT/lib/modules