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.
94 lines
3.1 KiB
94 lines
3.1 KiB
# Genkernel Configuration File
|
|
|
|
# ===========GENKERNEL BASIC CONFIGURATION=============
|
|
|
|
# Run 'make menuconfig' before compiling this kernel?
|
|
MENUCONFIG="no"
|
|
|
|
# Run 'make clean' before compilation?
|
|
# If set to NO, implies MRPROPER WILL NOT be run
|
|
# Also, if clean is NO, it won't copy over any configuration
|
|
# file, it will use what's there.
|
|
CLEAN="yes"
|
|
|
|
# Run 'make mrproper' before configuration/compilation?
|
|
MRPROPER="yes"
|
|
|
|
# Copy bootsplash into the initrd image?
|
|
BOOTSPLASH="yes"
|
|
|
|
# Override the arch detection?
|
|
# ARCH_OVERRIDE="x86"
|
|
|
|
# Mount /boot automatically if it isn't mounted?
|
|
MOUNTBOOT="yes"
|
|
|
|
# Save the new configuration in /etc/kernels upon
|
|
# successfull compilation
|
|
SAVE_CONFIG="yes"
|
|
|
|
# Use Color output in Genkernel?
|
|
USECOLOR="yes"
|
|
|
|
# Add new kernel to grub?
|
|
# BOOTLOADER="grub"
|
|
|
|
# =========GENKERNEL LOCATION CONFIGURATION============
|
|
# Variables:
|
|
# %%ARCH%% - Final determined architecture
|
|
|
|
# Default share directory location
|
|
GK_SHARE="/usr/share/genkernel"
|
|
|
|
# Location of helper-scripts
|
|
#GK_BIN="${GK_SHARE}/bin"
|
|
GK_BIN="${GK_SHARE}"
|
|
# Log output file
|
|
DEBUGFILE="/var/log/genkernel.log"
|
|
# Debug Level
|
|
DEBUGLEVEL=1
|
|
|
|
# Default location of kernel source
|
|
DEFAULT_KERNEL_SOURCE="/usr/src/linux"
|
|
# Default kernel config (only use to override using %%ARCH%%/kernel-config-${VER}.${PAT} !)
|
|
# DEFAULT_KERNEL_CONFIG="${GK_SHARE}/%%ARCH%%/kernel-config"
|
|
|
|
# Configuration file for busybox
|
|
BUSYBOX_CONFIG="${GK_SHARE}/%%ARCH%%/busy-config"
|
|
# BusyBox Version
|
|
BUSYBOX_VER="1.00-pre7-losetup-crypto-alpha"
|
|
# Busybox bin-cache location, to store pre-compiled busybox
|
|
# binary is just a bzip2 busybox executable
|
|
BUSYBOX_BINCACHE="${GK_SHARE}/pkg/%%ARCH%%/busybox-${BUSYBOX_VER}-%%ARCH%%.bz2"
|
|
# Location of BusyBox source tarball
|
|
BUSYBOX_SRCTAR="${GK_SHARE}/pkg/busybox-${BUSYBOX_VER}.tar.bz2"
|
|
# Directory created after busybox tarball is extracted
|
|
BUSYBOX_DIR="busybox-${BUSYBOX_VER}"
|
|
|
|
MODULE_INIT_TOOLS_VER="0.9.15-pre4"
|
|
MODULE_INIT_TOOLS_SRCTAR="${GK_SHARE}/pkg/module-init-tools-${MODULE_INIT_TOOLS_VER}.tar.bz2"
|
|
MODULE_INIT_TOOLS_DIR="module-init-tools-${MODULE_INIT_TOOLS_VER}"
|
|
MODULE_INIT_TOOLS_BINCACHE="${GK_SHARE}/pkg/%%ARCH%%/insmod-%%ARCH%%-static-2.6.bz2"
|
|
|
|
MODUTILS_VER="2.4.26"
|
|
MODUTILS_SRCTAR="${GK_SHARE}/pkg/modutils-${MODUTILS_VER}.tar.bz2"
|
|
MODUTILS_DIR="modutils-${MODUTILS_VER}"
|
|
MODUTILS_BINCACHE="${GK_SHARE}/pkg/%%ARCH%%/insmod-%%ARCH%%-static-2.4.bz2"
|
|
|
|
DIETLIBC_VER="0.24"
|
|
DIETLIBC_SRCTAR="${GK_SHARE}/pkg/dietlibc-${DIETLIBC_VER}.tar.bz2"
|
|
DIETLIBC_DIR="dietlibc-${DIETLIBC_VER}"
|
|
DIETLIBC_BINCACHE="${GK_SHARE}/pkg/%%ARCH%%/dietlibc-${DIETLIBC_VER}-%%ARCH%%.tar.bz2"
|
|
DIETLIBC_BINCACHE_TEMP="${GK_SHARE}/pkg/%%ARCH%%/dietlibc-${DIETLIBC_VER}-%%ARCH%%-tempdir"
|
|
|
|
DEVFSD_VER="1.3.25-dietlibc-kernel25"
|
|
DEVFSD_SRCTAR="${GK_SHARE}/pkg/devfsd-${DEVFSD_VER}.tar.bz2"
|
|
DEVFSD_DIR="devfsd"
|
|
DEVFSD_BINCACHE="${GK_SHARE}/pkg/%%ARCH%%/devfsd-${DEVFSD_VER}-%%ARCH%%.bz2"
|
|
DEVFSD_CONF_BINCACHE="${GK_SHARE}/pkg/%%ARCH%%/devfsd-conf-${DIETLIBC_VER}-%%ARCH%%.bz2"
|
|
|
|
UDEV_VER="030"
|
|
UDEV_DIR="udev-${UDEV_VER}"
|
|
UDEV_SRCTAR="${GK_SHARE}/pkg/udev-${UDEV_VER}.tar.bz2"
|
|
UDEV_BINCACHE="${GK_SHARE}/pkg/%%ARCH%%/udev-${UDEV_VER}-%%ARCH%%.tar.bz2"
|