Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 186653
Collapse All | Expand All

(-)a/ChangeLog (+6 lines)
Lines 2-7 Link Here
2
# Copyright 2006-2007 Gentoo Foundation; Distributed under the GPL v2
2
# Copyright 2006-2007 Gentoo Foundation; Distributed under the GPL v2
3
# $Header: $
3
# $Header: $
4
4
5
  24 Jul 2007; Robin H. Johnson <robbat2@gentoo.org> gen_arch.sh,
6
  gen_determineargs.sh, genkernel.conf:
7
  Add support for custom %%ARCH%%/config.sh files, for usage with crazy
8
  sub-architectures. This is useful for some MIPS machines that might need the
9
  vmlinux.ecoff file for netboot instead of the zImage or raw vmlinux file.
10
5
  24 Jul 2007; Robin H. Johnson <robbat2@gentoo.org> gen_determineargs.sh,
11
  24 Jul 2007; Robin H. Johnson <robbat2@gentoo.org> gen_determineargs.sh,
6
  genkernel, genkernel.conf:
12
  genkernel, genkernel.conf:
7
  Add customized modules_load support. This allows users to specify exactly
13
  Add customized modules_load support. This allows users to specify exactly
(-)a/gen_arch.sh (-1 / +1 lines)
Lines 39-44 get_official_arch() { Link Here
39
		UTILS_ARCH='sparc'
39
		UTILS_ARCH='sparc'
40
	fi
40
	fi
41
	
41
	
42
	ARCH_CONFIG="${GK_SHARE}/${ARCH}/config.sh"
42
	ARCH_CONFIG=`arch_replace "${ARCH_CONFIG}"`
43
	[ -f "${ARCH_CONFIG}" ] || gen_die "${ARCH} not yet supported by genkernel. Please add the arch-specific config file, ${ARCH_CONFIG}"
43
	[ -f "${ARCH_CONFIG}" ] || gen_die "${ARCH} not yet supported by genkernel. Please add the arch-specific config file, ${ARCH_CONFIG}"
44
}
44
}
(-)a/gen_determineargs.sh (+1 lines)
Lines 215-220 determine_real_args() { Link Here
215
  
215
  
216
	DEFAULT_KERNEL_CONFIG=`arch_replace "${DEFAULT_KERNEL_CONFIG}"`
216
	DEFAULT_KERNEL_CONFIG=`arch_replace "${DEFAULT_KERNEL_CONFIG}"`
217
	MODULES_CONFIG=`arch_replace "${MODULES_CONFIG}"`
217
	MODULES_CONFIG=`arch_replace "${MODULES_CONFIG}"`
218
	ARCH_CONFIG=`arch_replace "${ARCH_CONFIG}"`
218
	BUSYBOX_CONFIG=`arch_replace "${BUSYBOX_CONFIG}"`
219
	BUSYBOX_CONFIG=`arch_replace "${BUSYBOX_CONFIG}"`
219
	BUSYBOX_BINCACHE=`arch_replace "${BUSYBOX_BINCACHE}"`
220
	BUSYBOX_BINCACHE=`arch_replace "${BUSYBOX_BINCACHE}"`
220
	MODULE_INIT_TOOLS_BINCACHE=`arch_replace "${MODULE_INIT_TOOLS_BINCACHE}"`
221
	MODULE_INIT_TOOLS_BINCACHE=`arch_replace "${MODULE_INIT_TOOLS_BINCACHE}"`
(-)a/genkernel.conf (-1 / +5 lines)
Lines 80-85 DEFAULT_KERNEL_SOURCE="/usr/src/linux" Link Here
80
# %%ARCH%%/kernel-config-${VER}.${PAT} !)
80
# %%ARCH%%/kernel-config-${VER}.${PAT} !)
81
# DEFAULT_KERNEL_CONFIG="${GK_SHARE}/%%ARCH%%/kernel-config"
81
# DEFAULT_KERNEL_CONFIG="${GK_SHARE}/%%ARCH%%/kernel-config"
82
82
83
# Configuration file for your architecture.
84
# You should probably not change this unless you 
85
# have some bizzare sub-arch.
86
ARCH_CONFIG="${GK_SHARE}/%%ARCH%%/config.sh"
87
83
# Configuration file for busybox
88
# Configuration file for busybox
84
BUSYBOX_CONFIG="${GK_SHARE}/%%ARCH%%/busy-config"
89
BUSYBOX_CONFIG="${GK_SHARE}/%%ARCH%%/busy-config"
85
# BusyBox Version
90
# BusyBox Version
86
- 

Return to bug 186653