You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
132 lines
4.1 KiB
132 lines
4.1 KiB
#!/bin/bash
|
|
# $Id$
|
|
|
|
determine_config_file() {
|
|
if [ "${CMD_KERNEL_CONFIG}" != "" ]
|
|
then
|
|
KERNEL_CONFIG="${CMD_KERNEL_CONFIG}"
|
|
elif [ -f "/etc/kernels/kernel-config-${ARCH}-${KV}" ]
|
|
then
|
|
KERNEL_CONFIG="/etc/kernels/kernel-config-${ARCH}-${KV}"
|
|
elif [ -f "${GK_SHARE}/arch/${ARCH}/kernel-config-${KV}" ]
|
|
then
|
|
KERNEL_CONFIG="${GK_SHARE}/arch/${ARCH}/kernel-config-${KV}"
|
|
elif [ "${DEFAULT_KERNEL_CONFIG}" != "" -a -f "${DEFAULT_KERNEL_CONFIG}" ]
|
|
then
|
|
KERNEL_CONFIG="${DEFAULT_KERNEL_CONFIG}"
|
|
elif [ -f "${GK_SHARE}/arch/${ARCH}/kernel-config-${VER}.${PAT}" ]
|
|
then
|
|
KERNEL_CONFIG="${GK_SHARE}/arch/${ARCH}/kernel-config-${VER}.${PAT}"
|
|
elif [ -f "${GK_SHARE}/arch/${ARCH}/kernel-config" ]
|
|
then
|
|
KERNEL_CONFIG="${GK_SHARE}/arch/${ARCH}/kernel-config"
|
|
else
|
|
gen_die 'Error: No kernel .config specified, or file not found!'
|
|
fi
|
|
}
|
|
|
|
config_kernel() {
|
|
determine_config_file
|
|
cd "${KERNEL_DIR}" || gen_die 'Could not switch to the kernel directory!'
|
|
|
|
# Backup and replace kernel .config
|
|
if isTrue "${CLEAN}" || [ ! -f "${KERNEL_DIR}/.config" ]
|
|
then
|
|
print_info 1 "config: Using config from ${KERNEL_CONFIG}"
|
|
if [ -f "${KERNEL_DIR}/.config" ]
|
|
then
|
|
NOW=`date +--%Y-%m-%d--%H-%M-%S`
|
|
cp "${KERNEL_DIR}/.config" "${KERNEL_DIR}/.config${NOW}.bak" \
|
|
|| gen_die "Could not backup kernel config (${KERNEL_DIR}/.config)"
|
|
print_info 1 " Previous config backed up to .config${NOW}.bak"
|
|
fi
|
|
cp "${KERNEL_CONFIG}" "${KERNEL_DIR}/.config" || gen_die 'Could not copy configuration file!'
|
|
fi
|
|
|
|
if isTrue ${MRPROPER}
|
|
then
|
|
print_info 1 'kernel: >> Running mrproper...'
|
|
compile_generic mrproper kernel
|
|
else
|
|
print_info 1 "config: --no-mrproper is enabled; not running 'make mrproper'."
|
|
fi
|
|
|
|
# If we're not cleaning, then we don't want to try to overwrite the configs
|
|
# or we might remove configurations someone is trying to test.
|
|
|
|
if isTrue "${OLDCONFIG}"
|
|
then
|
|
print_info 1 ' >> Running oldconfig...'
|
|
yes '' 2>/dev/null | compile_generic oldconfig kernel 2>/dev/null
|
|
else
|
|
print_info 1 "config: --oldconfig is disabled; not running 'make oldconfig'."
|
|
fi
|
|
if isTrue "${CLEAN}"
|
|
then
|
|
print_info 1 'kernel: >> Cleaning...'
|
|
compile_generic clean kernel
|
|
else
|
|
print_info 1 "config: --no-clean is enabled; not running 'make clean'."
|
|
fi
|
|
|
|
if isTrue ${MENUCONFIG}
|
|
then
|
|
print_info 1 'config: >> Invoking menuconfig...'
|
|
compile_generic menuconfig runtask
|
|
[ "$?" ] || gen_die 'Error: menuconfig failed!'
|
|
elif isTrue ${CMD_GCONFIG}
|
|
then
|
|
print_info 1 'config: >> Invoking gconfig...'
|
|
compile_generic gconfig kernel
|
|
[ "$?" ] || gen_die 'Error: gconfig failed!'
|
|
|
|
CMD_XCONFIG=0
|
|
fi
|
|
|
|
if isTrue ${CMD_XCONFIG}
|
|
then
|
|
print_info 1 'config: >> Invoking xconfig...'
|
|
compile_generic xconfig kernel
|
|
[ "$?" ] || gen_die 'Error: xconfig failed!'
|
|
fi
|
|
|
|
# Force this on if we are using --genzimage
|
|
if isTrue ${CMD_GENZIMAGE}
|
|
then
|
|
# Make sure Ext2 support is on...
|
|
sed -e 's/#\? \?CONFIG_EXT2_FS[ =].*/CONFIG_EXT2_FS=y/g' \
|
|
-i ${KERNEL_DIR}/.config
|
|
fi
|
|
|
|
# Make sure lvm modules are on if --lvm
|
|
if isTrue ${CMD_LVM}
|
|
then
|
|
sed -i ${KERNEL_DIR}/.config -e 's/#\? \?CONFIG_BLK_DEV_DM is.*/CONFIG_BLK_DEV_DM=m/g'
|
|
sed -i ${KERNEL_DIR}/.config -e 's/#\? \?CONFIG_DM_SNAPSHOT is.*/CONFIG_DM_SNAPSHOT=m/g'
|
|
sed -i ${KERNEL_DIR}/.config -e 's/#\? \?CONFIG_DM_MIRROR is.*/CONFIG_DM_MIRROR=m/g'
|
|
fi
|
|
|
|
# Make sure dmraid modules are on if --dmraid
|
|
if isTrue ${CMD_DMRAID}
|
|
then
|
|
sed -i ${KERNEL_DIR}/.config -e 's/#\? \?CONFIG_BLK_DEV_DM is.*/CONFIG_BLK_DEV_DM=m/g'
|
|
fi
|
|
|
|
# Make sure iSCSI modules are enabled in the kernel, if --iscsi
|
|
# CONFIG_SCSI_ISCSI_ATTRS
|
|
# CONFIG_ISCSI_TCP
|
|
if isTrue ${CMD_ISCSI}
|
|
then
|
|
sed -i ${KERNEL_DIR}/.config -e 's/\# CONFIG_ISCSI_TCP is not set/CONFIG_ISCSI_TCP=m/g'
|
|
sed -i ${KERNEL_DIR}/.config -e 's/\# CONFIG_SCSI_ISCSI_ATTRS is not set/CONFIG_SCSI_ISCSI_ATTRS=m/g'
|
|
|
|
sed -i ${KERNEL_DIR}/.config -e 's/CONFIG_ISCSI_TCP=y/CONFIG_ISCSI_TCP=m/g'
|
|
sed -i ${KERNEL_DIR}/.config -e 's/CONFIG_SCSI_ISCSI_ATTRS=y/CONFIG_SCSI_ISCSI_ATTRS=m/g'
|
|
fi
|
|
|
|
if isTrue ${SPLASH}
|
|
then
|
|
sed -i ${KERNEL_DIR}/.config -e 's/#\? \?CONFIG_FB_SPLASH is.*/CONFIG_FB_SPLASH=y/g'
|
|
fi
|
|
}
|