Moving initramfs-tools entry-point to backends.
[live-boot-grml.git] / backends / initramfs-tools / live.script
1 #!/bin/sh
2
3 #set -e
4
5 if [ -e /lib/live/boot.sh ]
6 then
7         . /lib/live/boot.sh
8 fi
9
10 if [ -e /scripts/functions ]
11 then
12         . /scripts/functions
13 fi
14
15 mountroot ()
16 {
17         # initramfs-tools entry point for live-boot is mountroot(); function
18         Main
19 }