Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 435358 | Differences between
and this patch

Collapse All | Expand All

(-)a/gen_cmdline.sh (+12 lines)
Lines 375-380 parse_cmdline() { Link Here
375
			print_info 2 "CMD_CLEAN: ${CMD_CLEAN}"
375
			print_info 2 "CMD_CLEAN: ${CMD_CLEAN}"
376
			print_info 2 "CMD_OLDCONFIG: ${CMD_OLDCONFIG}"
376
			print_info 2 "CMD_OLDCONFIG: ${CMD_OLDCONFIG}"
377
			;;
377
			;;
378
		--allyesconfig|--allnoconfig|--allmodconfig|--alldefconfig)
379
			CMD_ALLCONFIG=$1
380
			CMD_ALLCONFIG=${CMD_ALLCONFIG#--all}
381
			CMD_ALLCONFIG=${CMD_ALLCONFIG%config}
382
			[[ "$CMD_ALLCONFIG" = "yes" || \
383
			    "$CMD_ALLCONFIG" = "no" || \
384
			    "$CMD_ALLCONFIG" = "def" || \
385
			    "$CMD_ALLCONFIG" = "mod" ]] && \
386
			    CMD_CLEAN=0 && CMD_OLDCONFIG=0
387
			print_info 2 "CMD_CLEAN: ${CMD_CLEAN}"
388
			print_info 2 "CMD_ALLCONFIG: ${CMD_ALLCONFIG}"
389
			;;
378
		--gensplash=*)
390
		--gensplash=*)
379
			CMD_SPLASH=1
391
			CMD_SPLASH=1
380
			SPLASH_THEME=`parse_opt "$*"`
392
			SPLASH_THEME=`parse_opt "$*"`
(-)a/gen_configkernel.sh (+4 lines)
Lines 69-74 config_kernel() { Link Here
69
	then
69
	then
70
		print_info 1 '        >> Running oldconfig...'
70
		print_info 1 '        >> Running oldconfig...'
71
		compile_generic oldconfig kernel
71
		compile_generic oldconfig kernel
72
	elif [[ -n "${ALLCONFIG}" ]]
73
	then
74
		print_info 1 "        >> Running all${ALLCONFIG}config..."
75
		compile_generic all${ALLCONFIG}config kernel
72
	else
76
	else
73
		print_info 1 "kernel: --oldconfig is disabled; not running 'make oldconfig'."
77
		print_info 1 "kernel: --oldconfig is disabled; not running 'make oldconfig'."
74
	fi
78
	fi
(-)a/gen_determineargs.sh (-1 / +1 lines)
Lines 110-115 determine_real_args() { Link Here
110
	set_config_with_override BOOL   SYMLINK              CMD_SYMLINK
110
	set_config_with_override BOOL   SYMLINK              CMD_SYMLINK
111
	set_config_with_override STRING INSTALL_MOD_PATH     CMD_INSTALL_MOD_PATH
111
	set_config_with_override STRING INSTALL_MOD_PATH     CMD_INSTALL_MOD_PATH
112
	set_config_with_override BOOL   OLDCONFIG            CMD_OLDCONFIG
112
	set_config_with_override BOOL   OLDCONFIG            CMD_OLDCONFIG
113
	set_config_with_override STRING ALLCONFIG            CMD_ALLCONFIG
113
	set_config_with_override BOOL   LVM                  CMD_LVM
114
	set_config_with_override BOOL   LVM                  CMD_LVM
114
	set_config_with_override BOOL   DMRAID               CMD_DMRAID
115
	set_config_with_override BOOL   DMRAID               CMD_DMRAID
115
	set_config_with_override BOOL   ISCSI                CMD_ISCSI
116
	set_config_with_override BOOL   ISCSI                CMD_ISCSI
116
- 

Return to bug 435358