%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
# -*- shell-script -*- pre_mountroot() { local script_dir="/scripts/local-top" [ "$quiet" != "y" ] && log_begin_msg "Running $script_dir" run_scripts "$script_dir" [ "$quiet" != "y" ] && log_end_msg } # Determine full path to disk partition given a filesystem label. get_partition_from_label() { local label="$1" [ -n "$label" ] || panic "need FS label" # Make sure the device has been created by udev before looking for it # Don't need to panic, since the output will be validated outside this function wait-for-root "LABEL=$label" "${ROOTDELAY:-180}" >/dev/null || true local part=$(find /dev -name "$label"|tail -1) [ -z "$part" ] && return local path=$(readlink -f "$part") [ -n "$path" ] && echo "$path" } # setup $writable_mnt do_root_mounting() { root="LABEL=$writable_label" # Make sure the device has been created by udev before we try to mount wait-for-root "$root" "${ROOTDELAY:-180}" || panic "unable to find root partition '$root'" # FIXME: This is never false since we set $root above [ -n "$root" ] || panic "no root partition specified" if echo "$root" | grep -q ^/; then path="$root" else # convert UUID/LABEL to a device name path=$(findfs "$root" 2>/dev/null || :) fi [ -e "$path" ] || panic "root device $path does not exist" # try loading squashfs, but don't fail if its e.g. in the kernel # already modprobe squashfs || true if ! grep -q squashfs /proc/filesystems; then panic "no squashfs support found in your system, aborting" fi # mount writable rw path=$(get_partition_from_label "$writable_label") mount "$path" "$writable_mnt" }