30 lines
977 B
Bash
30 lines
977 B
Bash
#!/bin/bash
|
|
# This is a config file for Linux Live Kit build script.
|
|
# You shouldn't need to change anything expect LIVEKITNAME
|
|
|
|
# Live Kit Name. Defaults to 'mylinux';
|
|
# For example, Slax changes it to 'slax'
|
|
# Must not contain any spaces.
|
|
LIVEKITNAME="slax"
|
|
|
|
# Kernel version. Change it to "3.2.28" for example, if you are building
|
|
# Live Kit with a different kernel than the one you are actually running
|
|
KERNEL=$(uname -r)
|
|
|
|
# List of directories which will be modularized
|
|
# No subdirectories are allowed, no slashes,
|
|
# so You can't use /var/tmp here for example
|
|
MKMOD="bin etc home lib lib64 opt root sbin srv usr var"
|
|
|
|
# List of files and directories you'd like to exclude from your Live Kit
|
|
EXCLUDE="/etc/fstab /etc/mtab"
|
|
|
|
# Temporary directory to store livekit filesystem
|
|
LIVEKITDATA=/tmp/$LIVEKITNAME-data-$$
|
|
|
|
# Bundle extension, for example 'sb' for .sb extension
|
|
BEXT=sb
|
|
|
|
# Directory with kernel .ko modules, can be different in some distros
|
|
LMK="lib/modules/$KERNEL"
|