slitaz-modular diff initramfs/lib/.config @ rev 177

mkiso.sh: more filenames support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 30 09:46:37 2016 +0200 (2016-03-30)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/initramfs/lib/.config	Wed Mar 30 09:46:37 2016 +0200
     1.3 @@ -0,0 +1,35 @@
     1.4 +#!/bin/bash
     1.5 +# This is a config file for Linux Live Kit build script.
     1.6 +# You shouldn't need to change anything expect LIVEKITNAME
     1.7 +
     1.8 +# Live Kit Name. Defaults to 'mylinux';
     1.9 +# For example, Slax changes it to 'slax'
    1.10 +# Must not contain any spaces.
    1.11 +# If you change it, you must run ./tools/isolinux.bin.update script
    1.12 +# in order to update isolinux.bin for CD booting.
    1.13 +LIVEKITNAME="slitaz"
    1.14 +
    1.15 +# Kernel file, will be copied to your Live Kit
    1.16 +VMLINUZ=/boot/vmlinuz
    1.17 +
    1.18 +# Kernel version. Change it to "3.2.28" for example, if you are building
    1.19 +# Live Kit with a different kernel than the one you are actually running
    1.20 +KERNEL=$(uname -r)
    1.21 +
    1.22 +# List of directories which will be modularized
    1.23 +# No subdirectories are allowed, no slashes,
    1.24 +# so You can't use /var/tmp here for example
    1.25 +# Exclude directories like proc sys tmp
    1.26 +MKMOD="bin etc home lib lib64 opt root sbin srv usr var"
    1.27 +
    1.28 +# List of files and directories you'd like to exclude from your Live Kit
    1.29 +EXCLUDE="/etc/fstab /etc/mtab"
    1.30 +
    1.31 +# Temporary directory to store livekit filesystem
    1.32 +LIVEKITDATA=/tmp/$LIVEKITNAME-data-$$
    1.33 +
    1.34 +# Bundle extension, for example 'sb' for .sb extension
    1.35 +BEXT=xz
    1.36 +
    1.37 +# Directory with kernel .ko modules, can be different in some distros
    1.38 +LMK="lib/modules/$KERNEL"