/usr/share/initramfs-tools/scripts/live-premount/modules is in live-boot-initramfs-tools 3.0~a24-1ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | #!/bin/sh
#set -e
# initramfs-tools header
PREREQ="udev"
prereqs()
{
echo "${PREREQ}"
}
case "${1}" in
prereqs)
prereqs
exit 0
;;
esac
# live-boot script
# The following modprobe entry is a workaround to live-boot not
# finding the root filesytem.
#
# See also:
# * http://lists.alioth.debian.org/pipermail/debian-live-devel/2007-May/001459.html
# * http://lists.alioth.debian.org/pipermail/debian-live-devel/2007-June/001517.html
# * http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=363047
modprobe -q ide-generic
modprobe -q esp
|