Note the issue with kernel parameter saving in the ERRATA
This commit is contained in:
parent
363f3f588a
commit
0b549813b2
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=4513
1 changed files with 20 additions and 2 deletions
|
@ -1,10 +1,10 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" [
|
||||
<!ENTITY base CDATA "../..">
|
||||
<!ENTITY date "$Date: 1999-03-11 17:10:24 $">
|
||||
<!ENTITY date "$Date: 1999-03-13 10:22:19 $">
|
||||
<!ENTITY title "FreeBSD 3.1 Errata Notes">
|
||||
<!ENTITY % includes SYSTEM "../../includes.sgml"> %includes;
|
||||
]>
|
||||
<!-- $Id: errata.sgml,v 1.3 1999-03-11 17:10:24 motoyuki Exp $ -->
|
||||
<!-- $Id: errata.sgml,v 1.4 1999-03-13 10:22:19 jkh Exp $ -->
|
||||
|
||||
<html>
|
||||
&header;
|
||||
|
@ -49,6 +49,24 @@ Fix: The problem here is that though the compatibility a.out libraries
|
|||
then re-run /stand/sysinstall (or use the pkg_add(1) command
|
||||
directly) to re-install the failing package(s).
|
||||
|
||||
<strong>
|
||||
o Kernel change information is not saved in the new kernel, even
|
||||
though this is claimed to work in the docs.
|
||||
</strong>
|
||||
|
||||
Fix: The change information is being written out, in fact, but to the
|
||||
wrong location. move /kernel.config to /boot/kernel.conf (if it
|
||||
exists, otherwise there were no changes to save) and add the
|
||||
following lines to /boot/loader.rc:
|
||||
|
||||
load /kernel
|
||||
load -t userconfig_script /boot/kernel.conf
|
||||
autoboot 5
|
||||
|
||||
This will cause the kernel change information to be read in and
|
||||
used properly (and you just learned a little about the new 3-stage
|
||||
loader in the process, so the exercise wasn't a total loss).
|
||||
|
||||
</pre>
|
||||
<p></p><a href="../index.html">Release Home</a>
|
||||
&footer;
|
||||
|
|
Loading…
Reference in a new issue