slitaz-modular view initramfs/lib/.config @ rev 175

initramfs: Add new linux-live scripts support.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Mar 13 17:07:55 2013 +0000 (2013-03-13)
parents
children
line source
1 #!/bin/bash
2 # This is a config file for Linux Live Kit build script.
3 # You shouldn't need to change anything expect LIVEKITNAME
5 # Live Kit Name. Defaults to 'mylinux';
6 # For example, Slax changes it to 'slax'
7 # Must not contain any spaces.
8 # If you change it, you must run ./tools/isolinux.bin.update script
9 # in order to update isolinux.bin for CD booting.
10 LIVEKITNAME="slitaz"
12 # Kernel file, will be copied to your Live Kit
13 VMLINUZ=/boot/vmlinuz
15 # Kernel version. Change it to "3.2.28" for example, if you are building
16 # Live Kit with a different kernel than the one you are actually running
17 KERNEL=$(uname -r)
19 # List of directories which will be modularized
20 # No subdirectories are allowed, no slashes,
21 # so You can't use /var/tmp here for example
22 # Exclude directories like proc sys tmp
23 MKMOD="bin etc home lib lib64 opt root sbin srv usr var"
25 # List of files and directories you'd like to exclude from your Live Kit
26 EXCLUDE="/etc/fstab /etc/mtab"
28 # Temporary directory to store livekit filesystem
29 LIVEKITDATA=/tmp/$LIVEKITNAME-data-$$
31 # Bundle extension, for example 'sb' for .sb extension
32 BEXT=xz
34 # Directory with kernel .ko modules, can be different in some distros
35 LMK="lib/modules/$KERNEL"