Update .config

pull/13/head
Peter Jin 2015-08-10 23:52:05 -05:00
parent e01a68de2c
commit 2a150ac598
1 changed files with 4 additions and 4 deletions

View File

@ -9,13 +9,13 @@
# in order to update isolinux.bin for CD booting. # in order to update isolinux.bin for CD booting.
LIVEKITNAME="mylinux" LIVEKITNAME="mylinux"
# Kernel file, will be copied to your Live Kit
VMLINUZ=/boot/vmlinuz
# Kernel version. Change it to "3.2.28" for example, if you are building # 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 # Live Kit with a different kernel than the one you are actually running
KERNEL=$(uname -r) KERNEL=$(uname -r)
# Kernel file, will be copied to your Live Kit
VMLINUZ=/boot/vmlinuz-"$KERNEL"
# List of directories which will be modularized # List of directories which will be modularized
# No subdirectories are allowed, no slashes, # No subdirectories are allowed, no slashes,
# so You can't use /var/tmp here for example # so You can't use /var/tmp here for example
@ -26,7 +26,7 @@ MKMOD="bin etc home lib lib64 opt root sbin srv usr var"
EXCLUDE="/etc/fstab /etc/mtab" EXCLUDE="/etc/fstab /etc/mtab"
# Temporary directory to store livekit filesystem # Temporary directory to store livekit filesystem
LIVEKITDATA=/tmp/$LIVEKITNAME-data-$$ LIVEKITDATA=$(mktemp -d "/tmp/$LIVEKITNAME-data.XXXXXX")
# Bundle extension, for example 'sb' for .sb extension # Bundle extension, for example 'sb' for .sb extension
BEXT=sb BEXT=sb