9 addimage_directory
="${3}"
12 aufs|unionfs|overlayfs
)
13 modprobe
-q -b ${UNIONTYPE}
15 if ! cut
-f2 /proc
/filesystems |
grep -q "^${UNIONTYPE}\$" && [ -x /bin
/unionfs-fuse
]
17 echo "${UNIONTYPE} not available, falling back to unionfs-fuse."
18 echo "This might be really slow."
20 UNIONTYPE
="unionfs-fuse"
25 case "${UNIONTYPE}" in
31 # run-init can't deal with images in a subdir, but we're going to
32 # move all of these away before it runs anyway. No, we're not,
33 # put them in / since move-mounting them into / breaks mono and
38 # Let's just mount the read-only file systems first
41 if [ -z "${PLAIN_ROOT}" ]
43 # Read image names from ${MODULE}.module if it exists
44 if [ -e "${image_directory}/filesystem.${MODULE}.module" ]
46 for IMAGE
in $
(cat ${image_directory}/filesystem.
${MODULE}.module
)
48 image_string
="${image_string} ${image_directory}/${IMAGE}"
50 elif [ -e "${image_directory}/${MODULE}.module" ]
52 for IMAGE
in $
(cat ${image_directory}/${MODULE}.module
)
54 image_string
="${image_string} ${image_directory}/${IMAGE}"
57 # ${MODULE}.module does not exist, create a list of images
58 for FILESYSTEM
in squashfs ext2 ext3 ext4 xfs jffs2 dir
60 for IMAGE
in "${image_directory}"/*.
"${FILESYSTEM}"
64 image_string
="${image_string} ${IMAGE}"
69 if [ -n "${addimage_directory}" ] && [ -d "${addimage_directory}" ]
71 for FILESYSTEM
in squashfs ext2 ext3 ext4 xfs jffs2 dir
73 for IMAGE
in "${addimage_directory}"/*.
"${FILESYSTEM}"
77 image_string
="${image_string} ${IMAGE}"
84 image_string
="$(echo ${image_string} | sed -e 's/ /\n/g' | sort )"
87 [ -n "${MODULETORAMFILE}" ] && image_string="${image_directory}/$(basename ${MODULETORAMFILE})"
91 for image
in ${image_string}
93 imagename
=$
(basename "${image}")
96 maybe_break live-realpremount
97 log_begin_msg
"Running /scripts/live-realpremount"
98 run_scripts
/scripts
/live-realpremount
103 # it is a plain directory: do nothing
104 rootfslist
="${image} ${rootfslist}"
105 elif [ -f "${image}" ]
107 if losetup
--help 2>&1 |
grep -q -- "-r\b"
109 backdev
=$
(get_backing_device
"${image}" "-r")
111 backdev
=$
(get_backing_device
"${image}")
113 fstype
=$
(get_fstype
"${backdev}")
117 panic
"Unknown file system type on ${backdev} (${image})"
121 fstype
="${imagename##*.}"
122 log_warning_msg
"Unknown file system type on ${backdev} (${image}), assuming ${fstype}."
126 case "${UNIONTYPE}" in
129 rootfslist
="${rootmnt} ${rootfslist}"
133 mpoint
="${croot}/${imagename}"
134 rootfslist
="${mpoint} ${rootfslist}"
139 log_begin_msg
"Mounting \"${image}\" on \"${mpoint}\" via \"${backdev}\""
140 mount
-t "${fstype}" -o ro,noatime "${backdev}" "${mpoint}" || panic "Can not mount ${backdev} (${image}) on ${mpoint}"
145 # we have a plain root system
146 mkdir
-p "${croot}/filesystem"
147 log_begin_msg
"Mounting \"${image_directory}\" on \"${croot}/filesystem\""
148 mount
-t $
(get_fstype
"${image_directory}") -o ro,noatime "${image_directory}" "${croot}/filesystem" || \
149 panic
"Can not mount ${image_directory} on ${croot}/filesystem" && \
150 rootfslist
="${croot}/filesystem ${rootfslist}"
152 mount
-o bind ${croot}/filesystem
$mountpoint
158 mkdir
-p /live
/overlay
159 mount
-t tmpfs tmpfs
/live
/overlay
161 # Looking for persistence devices or files
162 if [ -n "${PERSISTENCE}" ] && [ -z "${NOPERSISTENCE}" ]
165 if [ -z "${QUICKUSBMODULES}" ]
168 num_block
=$
(ls -l /sys
/block |
wc -l)
169 for module
in sd_mod uhci-hcd ehci-hcd ohci-hcd usb-storage
171 modprobe
-q -b ${module}
177 # For some reason, udevsettle does not block in this scenario,
178 # so we sleep for a little while.
180 # See https://bugs.launchpad.net/ubuntu/+source/casper/+bug/84591
181 for timeout
in 5 4 3 2 1
185 if [ $
(ls -l /sys
/block |
wc -l) -gt ${num_block} ]
194 if [ -n "${PERSISTENCE_MEDIA}" ]
196 case "${PERSISTENCE_MEDIA}" in
198 whitelistdev
="$(removable_dev)"
202 whitelistdev
="$(removable_usb_dev)"
205 if [ -z "${whitelistdev}" ]
207 whitelistdev
="ignore_all_devices"
211 if is_in_comma_sep_list overlay
${PERSISTENCE_METHOD}
213 overlays
="${custom_overlay_label}"
216 local overlay_devices
218 if [ "${whitelistdev}" != "ignore_all_devices" ]
220 for media
in $
(find_persistence_media
"${overlays}" "${whitelistdev}")
222 media
="$(echo ${media} | tr ":" " ")"
225 ${custom_overlay_label}=*)
227 overlay_devices
="${overlay_devices} ${device}"
232 elif [ -n "${NFS_COW}" ] && [ -z "${NOPERSISTENCE}" ]
234 # check if there are any nfs options
235 if echo ${NFS_COW} |
grep -q ','
237 nfs_cow_opts
="-o nolock,$(echo ${NFS_COW}|cut -d, -f2-)"
238 nfs_cow
=$
(echo ${NFS_COW}|cut
-d, -f1)
240 nfs_cow_opts
="-o nolock"
244 if [ -n "${PERSISTENCE_READONLY}" ]
246 nfs_cow_opts
="${nfs_cow_opts},nocto,ro"
252 cowdevice
=$
(echo ${nfs_cow} |
sed "s/client_mac_address/${mac}/")
255 panic
"unable to determine mac address"
259 if [ -z "${cowdevice}" ]
263 cow_mountopt
="rw,noatime,mode=755"
266 if [ "${UNIONTYPE}" != "unionmount" ]
268 if [ -n "${PERSISTENCE_READONLY}" ] && [ "${cowdevice}" != "tmpfs" ]
270 mount
-t tmpfs
-o rw
,noatime
,mode
=755 tmpfs
"/live/overlay"
271 root_backing
="/live/persistence/$(basename ${cowdevice})-root"
272 mkdir
-p ${root_backing}
274 root_backing
="/live/overlay"
277 if [ "${cow_fstype}" = "nfs" ]
280 "Trying nfsmount ${nfs_cow_opts} ${cowdevice} ${root_backing}"
281 nfsmount
${nfs_cow_opts} ${cowdevice} ${root_backing} || \
282 panic
"Can not mount ${cowdevice} (n: ${cow_fstype}) on ${root_backing}"
284 mount
-t ${cow_fstype} -o ${cow_mountopt} ${cowdevice} ${root_backing} || \
285 panic
"Can not mount ${cowdevice} (o: ${cow_fstype}) on ${root_backing}"
289 rootfscount
=$
(echo ${rootfslist} |
wc -w)
291 rootfs
=${rootfslist%% }
293 if [ -n "${EXPOSED_ROOT}" ]
295 if [ ${rootfscount} -ne 1 ]
297 panic
"only one RO file system supported with exposedroot: ${rootfslist}"
300 mount
--bind ${rootfs} ${rootmnt} || \
301 panic
"bind mount of ${rootfs} failed"
303 if [ -z "${SKIP_UNION_MOUNTS}" ]
305 cow_dirs
='/var/tmp /var/lock /var/run /var/log /var/spool /home /var/lib/live'
313 if [ "${cow_fstype}" != "tmpfs" ] && [ "${cow_dirs}" != "/" ] && [ "${UNIONTYPE}" = "unionmount" ]
315 true
# FIXME: Maybe it does, I don't really know.
316 #panic "unionmount does not support subunions (${cow_dirs})."
319 for dir
in ${cow_dirs}; do
320 unionmountpoint
="${rootmnt}${dir}"
321 mkdir
-p ${unionmountpoint}
322 if [ "${UNIONTYPE}" = "unionmount" ]
324 # FIXME: handle PERSISTENCE_READONLY
325 unionmountopts
="-t ${cow_fstype} -o noatime,union,${cow_mountopt} ${cowdevice}"
326 # unionmount only works with util-linux mount
327 mount.util-linux
$unionmountopts "${unionmountpoint}"
329 cow_dir
="/live/overlay${dir}"
330 rootfs_dir
="${rootfs}${dir}"
332 if [ -n "${PERSISTENCE_READONLY}" ] && [ "${cowdevice}" != "tmpfs" ]
334 do_union
${unionmountpoint} ${cow_dir} ${root_backing} ${rootfs_dir}
336 do_union
${unionmountpoint} ${cow_dir} ${rootfs_dir}
338 fi || panic
"mount ${UNIONTYPE} on ${unionmountpoint} failed with option ${unionmountopts}"
341 # Correct the permissions of /:
342 chmod 0755 "${rootmnt}"
344 # Correct the permission of /tmp:
345 if [ -d "${rootmnt}/tmp" ]
347 chmod 1777 "${rootmnt}"/tmp
351 for d
in ${rootfslist}
353 live_rootfs
="/live/rootfs/${d##*/}"
354 live_rootfs_list
="${live_rootfs_list} ${live_rootfs}"
355 mkdir
-p "${live_rootfs}"
358 # do nothing # mount -o bind "${d}" "${live_rootfs}"
361 case "${UNIONTYPE}" in
363 mount
-o bind "${d}" "${live_rootfs}"
367 mount
-o move
"${d}" "${live_rootfs}"
374 # Adding custom persistence
375 if [ -n "${PERSISTENCE}" ] && [ -z "${NOPERSISTENCE}" ]
378 custom_mounts
="/tmp/custom_mounts.list"
379 rm -rf ${custom_mounts} 2> /dev
/null
381 # Gather information about custom mounts from devies detected as overlays
382 get_custom_mounts
${custom_mounts} ${overlay_devices}
384 [ -n "${LIVE_BOOT_DEBUG}" ] && cp ${custom_mounts} "/lib/live/mount/persistence"
386 # Now we do the actual mounting (and symlinking)
389 used_overlays
=$
(activate_custom_mounts
${custom_mounts})
392 # Close unused overlays (e.g. due to missing $persistence_list)
393 for overlay
in ${overlay_devices}
395 if echo ${used_overlays} |
grep -qve "^\(.* \)\?${overlay}\( .*\)\?$"
397 close_persistence_media
${overlay}
402 # ensure that a potentially stray tmpfs gets removed
403 # otherways, initramfs-tools is unable to remove /live
405 umount
/live
/overlay
> /dev
/null
2>&1 || true