add new genkernel dev
[genkernel.git] / genkernel.conf
1 # GenKernel Configuration File v3.0
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 # Should we _not_ install the kernel into the default
21 # locations?
22 NOINSTALL="yes"
23
24 # Override the arch detection?
25 # available params "x86", "amd64", "ppc", "sparc"
26 # ARCH_OVERRIDE="x86"
27
28 # Use Color output in Genkernel?
29 USECOLOR="yes"
30
31
32 # =========GENKERNEL LOCATION CONFIGURATION============
33 # Variables:
34 #   %%ARCH%% - Final determined architecture
35
36 # Default share directory location
37 GK_SHARE="/usr/share/genkernel"
38 #GK_SHARE="/home/brad/Desktop/genkernel"
39
40 # Location of helper-scripts
41 #GK_BIN="${GK_SHARE}/bin"
42 GK_BIN="${GK_SHARE}"
43 # Log output file
44 DEBUGFILE="/var/log/genkernel.log"
45 # Debug Level
46 DEBUGLEVEL=1
47
48 # Default location of kernel source
49 DEFAULT_KERNEL_SOURCE="/usr/src/linux"
50 # Default kernel config
51 DEFAULT_KERNEL_CONFIG="${GK_SHARE}/%%ARCH%%/kernel-config"
52
53 # Configuration file for busybox
54 BUSYBOX_CONFIG="${GK_SHARE}/%%ARCH%%/busy-config"
55 # BusyBox Version
56 BUSYBOX_VER="1.00-pre3"
57 # Busybox bin-cache location, to store pre-compiled busybox
58 # binary is just a bzip2 busybox executable
59 BUSYBOX_BINCACHE="${GK_SHARE}/pkg/%%ARCH%%/busybox-${BUSYBOX_VER}-%%ARCH%%.bz2"
60 # Location of BusyBox source tarball
61 BUSYBOX_SRCTAR="${GK_SHARE}/pkg/busybox-${BUSYBOX_VER}.tar.bz2"
62 # Directory created after busybox tarball is extracted
63 BUSYBOX_DIR="busybox-${BUSYBOX_VER}"
64
65 MODULE_INIT_TOOLS_VER="0.9.15-pre4"
66 MODULE_INIT_TOOLS_SRCTAR="${GK_SHARE}/pkg/module-init-tools-${MODULE_INIT_TOOLS_VER}.tar.bz2"
67 MODULE_INIT_TOOLS_DIR="module-init-tools-${MODULE_INIT_TOOLS_VER}"
68 MODULE_INIT_TOOLS_BINCACHE="${GK_SHARE}/pkg/%%ARCH%%/insmod-%%ARCH%%-static.bz2"
69
70 DIETLIBC_VER="0.24"
71 DIETLIBC_SRCTAR="${GK_SHARE}/pkg/dietlibc-${DIETLIBC_VER}.tar.bz2"
72 DIETLIBC_DIR="dietlibc-${DIETLIBC_VER}"
73 DIETLIBC_BINCACHE="${GK_SHARE}/pkg/%%ARCH%%/dietlibc-${DIETLIBC_VER}-%%ARCH%%.tar.bz2"
74 DIETLIBC_BINCACHE_TEMP="${GK_SHARE}/pkg/%%ARCH%%/dietlibc-${DIETLIBC_VER}-%%ARCH%%-tempdir"
75