>> 3.0.2e. Code formatting fixes from Bob Barry, as well as a patch for bug
[genkernel.git] / genkernel.conf
1 # Genkernel Configuration File
2
3 # ===========GENKERNEL BASIC CONFIGURATION=============
4
5 # Run 'make menuconfig' before compiling this kernel?
6 MENUCONFIG="no"
7
8 # Run 'make clean' before compilation?
9 # If set to NO, implies MRPROPER WILL NOT be run
10 # Also, if clean is NO, it won't copy over any configuration
11 # file, it will use what's there.
12 CLEAN="yes"
13
14 # Run 'make mrproper' before configuration/compilation?
15 MRPROPER="yes"
16
17 # Copy bootsplash into the initrd image?
18 BOOTSPLASH="yes"
19
20 # Override the arch detection?
21 # ARCH_OVERRIDE="x86"
22
23 # Mount /boot automatically if it isn't mounted?
24 MOUNTBOOT="yes"
25
26 # Save the new configuration in /etc/kernels upon
27 # successfull compilation
28 SAVE_CONFIG="yes"
29
30 # Use Color output in Genkernel?
31 USECOLOR="yes"
32
33 # Add new kernel to grub?
34 # BOOTLOADER="grub"
35
36 # =========GENKERNEL LOCATION CONFIGURATION============
37 # Variables:
38 #   %%ARCH%% - Final determined architecture
39
40 # Default share directory location
41 GK_SHARE="/usr/share/genkernel"
42
43 # Location of helper-scripts
44 #GK_BIN="${GK_SHARE}/bin"
45 GK_BIN="${GK_SHARE}"
46 # Log output file
47 DEBUGFILE="/var/log/genkernel.log"
48 # Debug Level
49 DEBUGLEVEL=1
50
51 # Default location of kernel source
52 DEFAULT_KERNEL_SOURCE="/usr/src/linux"
53 # Default kernel config (only use to override using %%ARCH%%/kernel-config-${VER}.${PAT} !)
54 # DEFAULT_KERNEL_CONFIG="${GK_SHARE}/%%ARCH%%/kernel-config"
55
56 # Configuration file for busybox
57 BUSYBOX_CONFIG="${GK_SHARE}/%%ARCH%%/busy-config"
58 # BusyBox Version
59 BUSYBOX_VER="1.00-pre7-losetup-crypto-alpha"
60 # Busybox bin-cache location, to store pre-compiled busybox
61 # binary is just a bzip2 busybox executable
62 BUSYBOX_BINCACHE="${GK_SHARE}/pkg/%%ARCH%%/busybox-${BUSYBOX_VER}-%%ARCH%%.bz2"
63 # Location of BusyBox source tarball
64 BUSYBOX_SRCTAR="${GK_SHARE}/pkg/busybox-${BUSYBOX_VER}.tar.bz2"
65 # Directory created after busybox tarball is extracted
66 BUSYBOX_DIR="busybox-${BUSYBOX_VER}"
67
68 MODULE_INIT_TOOLS_VER="0.9.15-pre4"
69 MODULE_INIT_TOOLS_SRCTAR="${GK_SHARE}/pkg/module-init-tools-${MODULE_INIT_TOOLS_VER}.tar.bz2"
70 MODULE_INIT_TOOLS_DIR="module-init-tools-${MODULE_INIT_TOOLS_VER}"
71 MODULE_INIT_TOOLS_BINCACHE="${GK_SHARE}/pkg/%%ARCH%%/insmod-%%ARCH%%-static-2.6.bz2"
72
73 MODUTILS_VER="2.4.26"
74 MODUTILS_SRCTAR="${GK_SHARE}/pkg/modutils-${MODUTILS_VER}.tar.bz2"
75 MODUTILS_DIR="modutils-${MODUTILS_VER}"
76 MODUTILS_BINCACHE="${GK_SHARE}/pkg/%%ARCH%%/insmod-%%ARCH%%-static-2.4.bz2"
77
78 DIETLIBC_VER="0.24"
79 DIETLIBC_SRCTAR="${GK_SHARE}/pkg/dietlibc-${DIETLIBC_VER}.tar.bz2"
80 DIETLIBC_DIR="dietlibc-${DIETLIBC_VER}"
81 DIETLIBC_BINCACHE="${GK_SHARE}/pkg/%%ARCH%%/dietlibc-${DIETLIBC_VER}-%%ARCH%%.tar.bz2"
82 DIETLIBC_BINCACHE_TEMP="${GK_SHARE}/pkg/%%ARCH%%/dietlibc-${DIETLIBC_VER}-%%ARCH%%-tempdir"
83
84 DEVFSD_VER="1.3.25-dietlibc-kernel25"
85 DEVFSD_SRCTAR="${GK_SHARE}/pkg/devfsd-${DEVFSD_VER}.tar.bz2"
86 DEVFSD_DIR="devfsd"
87 DEVFSD_BINCACHE="${GK_SHARE}/pkg/%%ARCH%%/devfsd-${DEVFSD_VER}-%%ARCH%%.bz2"
88 DEVFSD_CONF_BINCACHE="${GK_SHARE}/pkg/%%ARCH%%/devfsd-conf-${DIETLIBC_VER}-%%ARCH%%.bz2"
89
90 UDEV_VER="030"
91 UDEV_DIR="udev-${UDEV_VER}"
92 UDEV_SRCTAR="${GK_SHARE}/pkg/udev-${UDEV_VER}.tar.bz2"
93 UDEV_BINCACHE="${GK_SHARE}/pkg/%%ARCH%%/udev-${UDEV_VER}-%%ARCH%%.tar.bz2"