blob: c25144383212938fa3d87328e8ef5a2d036fbd6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
#set -e
if [ -e /scripts/functions ]
then
. /scripts/functions
fi
mountroot ()
{
# initramfs-tools entry point for live-boot is mountroot(); function
Main
}
|