diff --git a/.config b/.config index 2740016..fd815d9 100644 --- a/.config +++ b/.config @@ -2,6 +2,21 @@ # 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 'linux'; +# This will be the name of the directory created on your CD/USB, which +# will contain everything including boot files and such. +# For example, Slax changes it to 'slax' +# Must not contain any spaces. +# If you change it, you must run ./tools/isolinux.bin.update script +# in order to update isolinux.bin for CD booting. +# If you do not need booting from CD (eg you're booting only from USB) +# then you can ignore recompiling isolinux.bin, just rename LIVEKITNAME#!/bin/bash +PID=$$ + +# This is a config file for Linux Live Kit build script. +# You shouldn't need to change anything expect LIVEKITNAME +# Modified, used by Linux Live Kit Improved. + # Live Kit Name. Defaults to 'linux'; # This will be the name of the directory created on your CD/USB, which # will contain everything including boot files and such. @@ -23,6 +38,45 @@ VMLINUZ=/vmlinuz # 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 opt root sbin srv usr var" + +# List of files and directories you'd like to +# exclude from your Live Kit +# NOTE: New syntax: /parent:{exclude} +# "I have heard all of your cries (and even sounds of anger)" +EXCLUDE="/etc:fstab /etc:mtab" + +# Temporary directory to store livekit filesystem +LIVEKITDATA=/tmp/$LIVEKITNAME-data-$PID + +# Directory to store all of Live Kit builds +BUILD_DIR=/tmp/livekit-build/ + +# Bundle extension, for example 'sb' for .sb extension +# NOTE: Set to '.bund' extension by default instead of '.sb' +BEXT=bund + +# Directory with kernel .ko modules, can be different in some distros +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