summaryrefslogtreecommitdiff
path: root/scripts/live-bottom/05mountpoints
blob: ce151e19e8493a91a0e0a8c0dc52d3c5fc9454b4 (plain)
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
33
34
35
36
#!/bin/sh

#set -e

# initramfs-tools header

PREREQ=""

prereqs()
{
	echo "${PREREQ}"
}

case "${1}" in
	prereqs)
		prereqs
		exit 0
		;;
esac

# live-initramfs header

. /scripts/live-functions

log_begin_msg "Moving mount points"

# live-initramfs script

# Move to the new root filesystem so that programs there can get at it.
if [ ! -d /root/live/image ]
then
	mkdir -p /root/live/image
	mount --move /live/image /root/live/image
fi

log_end_msg