From 9d86025fc1a3d967430921ba766d6e386f51d221 Mon Sep 17 00:00:00 2001 From: johndah4x0r Date: Tue, 25 Jul 2017 20:13:52 +0200 Subject: [PATCH] Update .config --- .config | 33 +-------------------------------- 1 file changed, 1 insertion(+), 32 deletions(-) diff --git a/.config b/.config index e0fed2d..e488f38 100644 --- a/.config +++ b/.config @@ -1,8 +1,6 @@ #!/bin/bash -# This is a config file for Linux Live Kit build script. -# You shouldn't need to change anything expect LIVEKITNAME -# The process ID. DO NOT TOUCH! +# The process ID. Do not touch! PID=$$ # This is a config file for Linux Live Kit build script. @@ -57,32 +55,3 @@ LMK="lib/modules/$KERNEL" # Architecture (not needed) ARCH=$(uname -m) -# and you're done. -LIVEKITNAME="linux" - -# Kernel file, will be copied to your Live Kit -# Your kernel must support aufs and squashfs. Debian Jessie's kernel is ready -# out of the box. -VMLINUZ=/vmlinuz - -# 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 -# Exclude directories like proc sys tmp -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"