View | Details | Raw Unified
Collapse All | Expand All

(-) old/gen_determineargs.sh (-1 / +8 lines)
 Lines 274-283    Link Here 
	then
	then
		MRPROPER="${CMD_MRPROPER}"
		MRPROPER="${CMD_MRPROPER}"
	fi
	fi
	if [ "${CMD_MENUCONFIG}" != '' ]
	if [ "${CMD_MENUCONFIG}" != '' ]
	then
	then
		MENUCONFIG="${CMD_MENUCONFIG}"
		MENUCONFIG="${CMD_MENUCONFIG}"
	fi
	fi
	if [ "${CMD_CLEAN}" != '' ]
	if [ "${CMD_CLEAN}" != '' ]
	then
	then
		CLEAN="${CMD_CLEAN}"
		CLEAN="${CMD_CLEAN}"
 Lines 391-397    Link Here 
		fi
		fi
	fi
	fi
	if isTrue "${CMD_OLDCONFIG}"
	if [ "${CMD_OLDCONFIG}" != '' ]
	then
		OLDCONFIG="${CMD_OLDCONFIG}"
	fi
	if isTrue "${OLDCONFIG}"
	then
	then
		OLDCONFIG=1
		OLDCONFIG=1
	else
	else
(-) old/genkernel (-1 / +5 lines)
 Lines 4-11    Link Here 
PATH="/bin:/usr/bin:/sbin:/usr/sbin"
PATH="/bin:/usr/bin:/sbin:/usr/sbin"
GK_V='3.4.8'
GK_V='3.4.8'
# Set the default for TMPDIR.  May be modified by genkernel.conf or the
# --tempdir command line option.
TMPDIR='/var/tmp/genkernel'
TMPDIR='/var/tmp/genkernel'
TEMP=${TMPDIR}/$RANDOM.$RANDOM.$RANDOM.$$
TODEBUGCACHE=1 # Until an error occurs or DEBUGFILE is fully qualified.
TODEBUGCACHE=1 # Until an error occurs or DEBUGFILE is fully qualified.
small_die() {
small_die() {
 Lines 26-31    Link Here 
source ${GK_BIN}/gen_package.sh || gen_die "Could not read ${GK_BIN}/gen_package.sh"
source ${GK_BIN}/gen_package.sh || gen_die "Could not read ${GK_BIN}/gen_package.sh"
source ${GK_BIN}/gen_bootloader.sh || gen_die "Could not read ${GK_BIN}/gen_bootloader.sh"
source ${GK_BIN}/gen_bootloader.sh || gen_die "Could not read ${GK_BIN}/gen_bootloader.sh"
TEMP=${TMPDIR}/$RANDOM.$RANDOM.$RANDOM.$$
trap_cleanup(){
trap_cleanup(){
	# Call exit code of 1 for failure
	# Call exit code of 1 for failure
	cleanup
	cleanup
(-) old/genkernel.8 (-2 / +4 lines)
 Lines 55-62    Link Here 
possible is given.
possible is given.
.TP
.TP
\fB\-\-debugfile=\fR<outfile>
\fB\-\-debugfile=\fR<outfile>
This outputs full debugging data; regardless of --debuglevel to the file 
This outputs debugging data to the file <outfile>. By default this is
<outfile>. By default this is
.I /var/log/genkernel.log\fR.
.I /var/log/genkernel.log\fR.
.TP
.TP
\fB\-\-\fR[no\-]\fBcolor\fR
\fB\-\-\fR[no\-]\fBcolor\fR
 Lines 221-226    Link Here 
\fB\-\-arch\-override=\fR<arch>
\fB\-\-arch\-override=\fR<arch>
Force the architecture settings described by the <arch> profile
Force the architecture settings described by the <arch> profile
instead of autodetecting the running architecture.
instead of autodetecting the running architecture.
.TP
\fB\-\-tempdir=\fR<dir>
Sets genkernel's temporary working directory to <dir>.
.PP
.PP
.BR Output \ Settings
.BR Output \ Settings
.TP
.TP
(-) old/genkernel.conf (+11 lines)
 Lines 2-7    Link Here 
# ===========GENKERNEL BASIC CONFIGURATION=============
# ===========GENKERNEL BASIC CONFIGURATION=============
# Run 'make oldconfig' before compiling this kernel?
# If set to "yes", also suppresses the fetch of the kernel .config file from
# /etc/kernels, thus preserving the .config file in /usr/src/linux.
# OLDCONFIG="no"
# Run 'make menuconfig' before compiling this kernel?
# Run 'make menuconfig' before compiling this kernel?
MENUCONFIG="no"
MENUCONFIG="no"
 Lines 23-28    Link Here 
# Mount BOOTDIR automatically if it isn't mounted?
# Mount BOOTDIR automatically if it isn't mounted?
MOUNTBOOT="yes"
MOUNTBOOT="yes"
# Make symlinks in BOOTDIR automatically?
# SYMLINK="no"
# Save the new configuration in /etc/kernels upon
# Save the new configuration in /etc/kernels upon
# successfull compilation
# successfull compilation
SAVE_CONFIG="yes"
SAVE_CONFIG="yes"
 Lines 48-53    Link Here 
#   %%ARCH%%  - Final determined architecture
#   %%ARCH%%  - Final determined architecture
#   %%CACHE%% - Final determined cache location
#   %%CACHE%% - Final determined cache location
# Set genkernel's temporary work directory.  Default is /var/tmp/genkernel
# TMPDIR="/var/tmp/genkernel"
# Set the boot directory, default is /boot
# Set the boot directory, default is /boot
#BOOTDIR="/boot"
#BOOTDIR="/boot"