>> 3.1.0b.
[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 #   %%CACHE%% - Final determined cache location
40
41 # Default share directory location
42 GK_SHARE="/usr/share/genkernel"
43
44 # Location of helper-scripts
45 #GK_BIN="${GK_SHARE}/bin"
46 GK_BIN="${GK_SHARE}"
47 # Location of the default cache
48 CACHE_DIR="${GK_SHARE}/pkg/%%ARCH%%"
49 # Log output file
50 DEBUGFILE="/var/log/genkernel.log"
51 # Debug Level
52 DEBUGLEVEL=1
53
54 # Default location of kernel source
55 DEFAULT_KERNEL_SOURCE="/usr/src/linux"
56 # Default kernel config (only use to override using %%ARCH%%/kernel-config-${VER}.${PAT} !)
57 # DEFAULT_KERNEL_CONFIG="${GK_SHARE}/%%ARCH%%/kernel-config"
58
59 # Configuration file for busybox
60 BUSYBOX_CONFIG="${GK_SHARE}/%%ARCH%%/busy-config"
61 # BusyBox Version
62 BUSYBOX_VER="1.00-pre7-losetup-crypto-alpha"
63 # Busybox bin-cache location, to store pre-compiled busybox
64 # binary is just a bzip2 busybox executable
65 BUSYBOX_BINCACHE="%%CACHE%%/busybox-${BUSYBOX_VER}-%%ARCH%%.bz2"
66 # Location of BusyBox source tarball
67 BUSYBOX_SRCTAR="${GK_SHARE}/pkg/busybox-${BUSYBOX_VER}.tar.bz2"
68 # Directory created after busybox tarball is extracted
69 BUSYBOX_DIR="busybox-${BUSYBOX_VER}"
70
71 MODULE_INIT_TOOLS_VER="0.9.15-pre4"
72 MODULE_INIT_TOOLS_SRCTAR="${GK_SHARE}/pkg/module-init-tools-${MODULE_INIT_TOOLS_VER}.tar.bz2"
73 MODULE_INIT_TOOLS_DIR="module-init-tools-${MODULE_INIT_TOOLS_VER}"
74 MODULE_INIT_TOOLS_BINCACHE="%%CACHE%%/insmod-%%ARCH%%-static-2.6.bz2"
75
76 MODUTILS_VER="2.4.26"
77 MODUTILS_SRCTAR="${GK_SHARE}/pkg/modutils-${MODUTILS_VER}.tar.bz2"
78 MODUTILS_DIR="modutils-${MODUTILS_VER}"
79 MODUTILS_BINCACHE="%%CACHE%%/insmod-%%ARCH%%-static-2.4.bz2"
80
81 DIETLIBC_VER="0.27"
82 DIETLIBC_SRCTAR="${GK_SHARE}/pkg/dietlibc-${DIETLIBC_VER}.tar.bz2"
83 DIETLIBC_DIR="dietlibc-${DIETLIBC_VER}"
84 DIETLIBC_BINCACHE="%%CACHE%%/dietlibc-${DIETLIBC_VER}-%%ARCH%%.tar.bz2"
85 DIETLIBC_BINCACHE_TEMP="%%CACHE%%/dietlibc-${DIETLIBC_VER}-%%ARCH%%-tempdir"
86
87 DEVFSD_VER="1.3.25-dietlibc-kernel25"
88 DEVFSD_SRCTAR="${GK_SHARE}/pkg/devfsd-${DEVFSD_VER}.tar.bz2"
89 DEVFSD_DIR="devfsd"
90 DEVFSD_BINCACHE="%%CACHE%%/devfsd-${DEVFSD_VER}-%%ARCH%%.bz2"
91 DEVFSD_CONF_BINCACHE="%%CACHE%%/devfsd-conf-${DIETLIBC_VER}-%%ARCH%%.bz2"
92
93 UDEV_VER="039"
94 UDEV_DIR="udev-${UDEV_VER}"
95 UDEV_SRCTAR="${GK_SHARE}/pkg/udev-${UDEV_VER}.tar.bz2"
96 UDEV_BINCACHE="%%CACHE%%/udev-${UDEV_VER}-%%ARCH%%.tar.bz2"