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.
32 lines
615 B
32 lines
615 B
19 years ago
|
#!/bin/bash
|
||
|
|
||
17 years ago
|
#
|
||
|
# Arch-specific options that normally shouldn't be changed.
|
||
|
#
|
||
19 years ago
|
KERNEL_MAKE_DIRECTIVE="vmlinux"
|
||
|
KERNEL_MAKE_DIRECTIVE_2=""
|
||
|
KERNEL_BINARY="./vmlinux"
|
||
|
|
||
|
# Initrd/Initramfs Options
|
||
|
COMPRESS_INITRD="yes"
|
||
|
USECOLOR="yes"
|
||
|
NOINITRDMODULES="yes"
|
||
|
BUSYBOX=1
|
||
|
DMRAID=0
|
||
|
DISKLABEL=0
|
||
|
|
||
19 years ago
|
# genkernel on mips is only used for LiveCDs && netboots. Catalyst
|
||
|
# will know where to get the kernels at.
|
||
19 years ago
|
CMD_NOINSTALL=1
|
||
17 years ago
|
|
||
|
#
|
||
|
# Arch-specific defaults that can be overridden in the config file or on the
|
||
|
# command line.
|
||
|
#
|
||
|
DEFAULT_KERNEL_MAKE=make
|
||
|
DEFAULT_UTILS_MAKE=make
|
||
|
DEFAULT_UTILS_CC=gcc
|
||
|
DEFAULT_UTILS_AS=as
|
||
|
DEFAULT_UTILS_LD=ld
|
||
|
|