From 1a426c98ed6faf253bc25fe35a219cc1a73fcea6 Mon Sep 17 00:00:00 2001 From: Tomas M Date: Sat, 1 Sep 2012 10:05:49 +0100 Subject: [PATCH] test --- .config | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .config diff --git a/.config b/.config new file mode 100644 index 0000000..ccc64ea --- /dev/null +++ b/.config @@ -0,0 +1,34 @@ +#!/bin/bash +# This is a config file for build script. +# You shouldn't need to change anything + +# Live Kit Name. Defaults to 'mylinux'; +# For example, Slax changes it to 'slax' +# Must not contain any spaces. +LIVEKITNAME="mylinux" + +# 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 compressed directories +# (the whole folder will be erased and recreated during build!) +CDDATA=/tmp/live_data_$$ + +# Change this variable if you installed your distro to some directory. +# for example ROOT=/tmp/newdir. You may leave it empty, then it defaults to / +ROOT= + +# Directory with kernel .ko modules, can be different in some distros +LMK="lib/modules/$KERNEL" + +# Debug log file +DEBUG=/tmp/linux-live-debug.log