diff options
author | kensmith <kensmith@FreeBSD.org> | 2004-04-11 03:30:09 +0000 |
---|---|---|
committer | kensmith <kensmith@FreeBSD.org> | 2004-04-11 03:30:09 +0000 |
commit | 4bf1bbd329d49b05b56a49ae5119ce00f55d881d (patch) | |
tree | b3fbaaad647b54a04f03544076b480f3b7169a2e | |
parent | f93d7d42401856c122e76640fdc4e7f020fcc518 (diff) | |
download | FreeBSD-src-4bf1bbd329d49b05b56a49ae5119ce00f55d881d.zip FreeBSD-src-4bf1bbd329d49b05b56a49ae5119ce00f55d881d.tar.gz |
Fix kernel build instructions to be correct for 5.X.
PR: docs/65397
Submitted by: Russell Francis <rf358197 (at) ohio.edu>
-rw-r--r-- | UPDATING | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1379,9 +1379,13 @@ COMMON ITEMS: To just build a kernel when you know that it won't mess you up -------------------------------------------------------------- - cd src/sys/{i386,alpha}/conf + This assumes you are already running a 5.X system. Replace + ${arch} with the architecture of your machine (e.g. "i386", + "alpha", "amd64", "ia64", "pc98", "sparc64", etc). + + cd src/sys/${arch}/conf config KERNEL_NAME_HERE - cd ../../compile/KERNEL_NAME_HERE + cd ../compile/KERNEL_NAME_HERE make depend make make install |