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

Collapse All | Expand All

(-)genkernel.8 (+21 lines)
Lines 101-106 Link Here
101
will be automatically mounted if it is
101
will be automatically mounted if it is
102
not already mounted before the initrd and kernel image is copied over.
102
not already mounted before the initrd and kernel image is copied over.
103
.TP
103
.TP
104
\fB\-\-\fR[no\-]\fBsymlink\fR
105
Manages, or does not manage, symlinks in 
106
.I /boot
107
like the manual kernel "make install" process does. A
108
.I kernel
109
(or, depending on options, 
110
.I kernelz\fR)
111
symlink will link to the most recently built kernel image and a
112
.I kernel.old
113
(or
114
.I kernelz.old\fR)
115
symlink will link to the second most recently built image, if one exists.
116
Similar symlinks (both * and *.old) are managed for
117
.I initramfs\fR (or
118
.I initrd\fR)
119
and
120
.I System.map\f.
121
The corresponding work products (i.e., the actual kernel and inirtamfs images, 
122
and System.map) are also managed accordingly.  NOTE:  Specifying --symlink 
123
does nothing unless --install is also specified.
124
.TP
104
\fB\-\-no\-initrdmodules\fR
125
\fB\-\-no\-initrdmodules\fR
105
Don't copy any modules to the initrd.
126
Don't copy any modules to the initrd.
106
.TP
127
.TP
(-)gen_cmdline.sh (+6 lines)
Lines 36-41 Link Here
36
  echo "	--no-gensplash		Do not use gensplash"
36
  echo "	--no-gensplash		Do not use gensplash"
37
  echo "	--install		Install the kernel after building"
37
  echo "	--install		Install the kernel after building"
38
  echo "	--no-install		Do not install the kernel after building"
38
  echo "	--no-install		Do not install the kernel after building"
39
  echo "	--symlink		Manage symlinks in /boot for installed images"
40
  echo "	--no-symlink		Do not manage symlinks"
39
  echo "	--no-initrdmodules	Don't copy any modules to the initrd"
41
  echo "	--no-initrdmodules	Don't copy any modules to the initrd"
40
  echo "	--no-udev		Disable udev support"
42
  echo "	--no-udev		Disable udev support"
41
  echo "	--no-devfs		Disable devfs support"
43
  echo "	--no-devfs		Disable devfs support"
Lines 466-471 Link Here
466
		      CMD_SYMLINK=1
468
		      CMD_SYMLINK=1
467
		      print_info 2 "CMD_SYMLINK: $CMD_SYMLINK"
469
		      print_info 2 "CMD_SYMLINK: $CMD_SYMLINK"
468
	      ;;
470
	      ;;
471
	      --no-symlink)
472
		      CMD_SYMLINK=0
473
		      print_info 2 "CMD_SYMLINK: $CMD_SYMLINK"
474
	      ;;
469
	      --no-kernel-sources)
475
	      --no-kernel-sources)
470
		      CMD_NO_KERNEL_SOURCES=1
476
		      CMD_NO_KERNEL_SOURCES=1
471
		      print_info 2 "CMD_NO_KERNEL_SOURCES: $CMD_NO_KERNEL_SOURCES"
477
		      print_info 2 "CMD_NO_KERNEL_SOURCES: $CMD_NO_KERNEL_SOURCES"

Return to bug 169383