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

Collapse All | Expand All

(-)genkernel_orig/gen_cmdline.sh (-3 / +5 lines)
Lines 63-68 Link Here
63
  echo "	--bootsplash=<theme>	Force bootsplash using <theme>"
63
  echo "	--bootsplash=<theme>	Force bootsplash using <theme>"
64
  echo "	--gensplash=<theme>	Force gensplash using <theme>"
64
  echo "	--gensplash=<theme>	Force gensplash using <theme>"
65
  echo "	--do-keymap-auto	Forces keymap selection at boot"
65
  echo "	--do-keymap-auto	Forces keymap selection at boot"
66
  echo "	--evms2			Include EVMS2 support"
67
  echo "				 --> 'emerge evms' in the host operating system first"
66
  echo "	--lvm2			Include LVM2 support"
68
  echo "	--lvm2			Include LVM2 support"
67
  echo "	--bootloader=grub	Add new kernel to GRUB configuration"
69
  echo "	--bootloader=grub	Add new kernel to GRUB configuration"
68
  echo "	--linuxrc=<file>	Specifies a user created linuxrc"
70
  echo "	--linuxrc=<file>	Specifies a user created linuxrc"
Lines 149-157 Link Here
149
		      CMD_DOKEYMAPAUTO=1
151
		      CMD_DOKEYMAPAUTO=1
150
		      print_info 2 "CMD_DOKEYMAPAUTO: $CMD_DOKEYMAPAUTO"
152
		      print_info 2 "CMD_DOKEYMAPAUTO: $CMD_DOKEYMAPAUTO"
151
	      ;;
153
	      ;;
152
	      --no-evms2)
154
	      --evms2)
153
		      CMD_NOEVMS2=1
155
		      CMD_EVMS2=1
154
		      print_info 2 'CMD_NOEVMS2: 1'
156
		      print_info 2 'CMD_EVMS2: 1'
155
	      ;;
157
	      ;;
156
	      --lvm2)
158
	      --lvm2)
157
		      CMD_LVM2=1
159
		      CMD_LVM2=1
(-)genkernel_orig/gen_initrd.sh (-2 / +2 lines)
Lines 128-136 Link Here
128
	fi
128
	fi
129
	
129
	
130
	# EVMS2
130
	# EVMS2
131
	if [ -e '/sbin/evms_activate' ]
131
	if [ "${CMD_EVMS2}" -eq '1' ]
132
	then
132
	then
133
		if [ "${CMD_NOEVMS2}" != '1' ]
133
		if [ -e '/sbin/evms_activate' ]
134
		then
134
		then
135
			print_info 1 'EVMS2: Adding support...'	
135
			print_info 1 'EVMS2: Adding support...'	
136
			mkdir -p ${TEMP}/initrd-temp/lib
136
			mkdir -p ${TEMP}/initrd-temp/lib

Return to bug 77385