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

Collapse All | Expand All

(-)/usr/share/genkernel/gen_cmdline.sh.old (+10 lines)
Lines 7-12 Link Here
7
  echo
7
  echo
8
  echo "Available Actions: "
8
  echo "Available Actions: "
9
  echo "  all				Build all steps"
9
  echo "  all				Build all steps"
10
  echo "  bzImage			Build only the kernel"
10
  echo "  kernel			Build only the kernel and modules"
11
  echo "  kernel			Build only the kernel and modules"
11
  echo "  initrd			Build only the initrd"
12
  echo "  initrd			Build only the initrd"
12
  echo
13
  echo
Lines 347-352 Link Here
347
	      ;;
348
	      ;;
348
	      all)
349
	      all)
349
		      BUILD_KERNEL=1
350
		      BUILD_KERNEL=1
351
		      BUILD_MODULES=1
350
		      BUILD_INITRD=1
352
		      BUILD_INITRD=1
351
	      ;;
353
	      ;;
352
	      initrd)
354
	      initrd)
Lines 354-361 Link Here
354
	      ;;
356
	      ;;
355
	      kernel)
357
	      kernel)
356
		      BUILD_KERNEL=1
358
		      BUILD_KERNEL=1
359
		      BUILD_MODULES=1
357
		      BUILD_INITRD=0
360
		      BUILD_INITRD=0
358
	      ;;
361
	      ;;
362
          bzImage)
363
              BUILD_KERNEL=1
364
		      BUILD_MODULES=0
365
              BUILD_INITRD=1
366
		      CMD_NOINITRDMODULES=1
367
		      print_info 2 "CMD_NOINITRDMODULES: $CMD_NOINITRDMODULES"
368
          ;;
359
	      --help)
369
	      --help)
360
		      longusage
370
		      longusage
361
		      exit 1
371
		      exit 1

Return to bug 95993