summaryrefslogtreecommitdiff
path: root/backends/initramfs-tools/live.script
blob: 7f99cc3f13918f274a5661a71befb0bf4cef554c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

#set -e

if [ -e /lib/live/boot.sh ]
then
	. /lib/live/boot.sh
fi

if [ -e /scripts/functions ]
then
	. /scripts/functions
fi

mountroot ()
{
	# initramfs-tools entry point for live-boot is mountroot(); function
	Main
}