summaryrefslogtreecommitdiffstats
path: root/release/picobsd/doc
diff options
context:
space:
mode:
authorabial <abial@FreeBSD.org>1998-09-26 17:23:01 +0000
committerabial <abial@FreeBSD.org>1998-09-26 17:23:01 +0000
commit9e3c7f6465df86c72f2de3fe0e1cdec6d558aa5f (patch)
tree0158fd7dac2bc0f3b5f54ffd73c4d1af7847c67e /release/picobsd/doc
parenta51c5aa8c3b70a83ca74789cc7cf52d719c1cf3d (diff)
downloadFreeBSD-src-9e3c7f6465df86c72f2de3fe0e1cdec6d558aa5f.zip
FreeBSD-src-9e3c7f6465df86c72f2de3fe0e1cdec6d558aa5f.tar.gz
Move the documents to src/ so that using new version number is easier.
Diffstat (limited to 'release/picobsd/doc')
-rw-r--r--release/picobsd/doc/src/Makefile14
-rw-r--r--release/picobsd/doc/src/bugs.html (renamed from release/picobsd/doc/bugs.html)18
-rw-r--r--release/picobsd/doc/src/faq.html (renamed from release/picobsd/doc/faq.html)6
-rw-r--r--release/picobsd/doc/src/hardware.html (renamed from release/picobsd/doc/hardware.html)4
-rw-r--r--release/picobsd/doc/src/how2build.html (renamed from release/picobsd/doc/how2build.html)2
-rw-r--r--release/picobsd/doc/src/intrinsics.html (renamed from release/picobsd/doc/intrinsics.html)2
-rw-r--r--release/picobsd/doc/src/intro.html (renamed from release/picobsd/doc/intro.html)7
7 files changed, 43 insertions, 10 deletions
diff --git a/release/picobsd/doc/src/Makefile b/release/picobsd/doc/src/Makefile
new file mode 100644
index 0000000..6478cbf
--- /dev/null
+++ b/release/picobsd/doc/src/Makefile
@@ -0,0 +1,14 @@
+#
+# $Id$
+#
+
+.include "../../Version"
+
+DOCS= bugs.html faq.html hardware.html how2build.html \
+ intrinsics.html intro.html
+
+all: ../../Version
+ for i in `ls *.html`; \
+ do \
+ cat $${i}|sed -e 's/@VER@/${VER}/g' >../$${i}; \
+ done
diff --git a/release/picobsd/doc/bugs.html b/release/picobsd/doc/src/bugs.html
index 00af0ae..c99ab08 100644
--- a/release/picobsd/doc/bugs.html
+++ b/release/picobsd/doc/src/bugs.html
@@ -1,5 +1,5 @@
<HTML>
-<! $Id$ >
+<! $Id: bugs.html,v 1.3 1998/09/08 06:35:43 abial Exp $ >
<HEAD>
<TITLE>History and Bug fixes</TITLE>
</HEAD>
@@ -14,6 +14,22 @@ the list before reporting a new one.</p>
<p>We tried to make this software bug-free, but life is life... Sorry for the
inconvenience.</p>
+<h3>PicoBSD 0.41</h3>
+<ul>
+<li>
+ 1998.09.25: Yes, this took more than just "a few days"... :-(. This is
+ mainly a bugfix release of 0.4 - almost no new features were added,
+ except the 'dmesg' to examine kernel messages buffer. Also, all
+ programs are compiled in ELF format. SNMP services are provided now
+ by UCD-SNMP v.3.5.
+
+ <p>Unfortunately, I had to remove DEVFS for now - there are too many
+ problems with it for now. This also means that we're back to creating
+ device nodes manually, and chances are that the one you need is
+ missing... </p>
+</li>
+</ul>
+
<h3>PicoBSD 0.4</h3>
<ul>
<li>
diff --git a/release/picobsd/doc/faq.html b/release/picobsd/doc/src/faq.html
index 77593d3..8c8681f 100644
--- a/release/picobsd/doc/faq.html
+++ b/release/picobsd/doc/src/faq.html
@@ -1,5 +1,5 @@
<HTML>
-<! $Id: faq.html,v 1.2 1998/08/31 12:28:39 abial Exp $ >
+<! $Id: faq.html,v 1.3 1998/08/31 13:08:16 abial Exp $ >
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Author" CONTENT="Dinesh Nair">
@@ -47,6 +47,10 @@ it sometimes has a little more functionality than the 3.0-current version</LI>
As far as possible, both versions will be kept functionally similar, but
occasionaly divergence may occur.
+<p><b>What is current version of PicoBSD?</b></p>
+
+<p>Current version of PicoBSD is @VER@.</p>
+
<P><B>What can PicoBSD do?</B></p>
<P>With the TCP/IP capabilities of FreeBSD included in and based on the
diff --git a/release/picobsd/doc/hardware.html b/release/picobsd/doc/src/hardware.html
index e8c7318..2075081 100644
--- a/release/picobsd/doc/hardware.html
+++ b/release/picobsd/doc/src/hardware.html
@@ -1,10 +1,10 @@
<html>
-<! $Id: hardware.html,v 1.3 1998/08/19 16:59:35 abial Exp $ >
+<! $Id: hardware.html,v 1.1.1.1 1998/08/27 17:38:42 abial Exp $ >
<body>
<h1><center>Lists of supported hardware configurations.</center></h1>
<p>Below you will find supported configurations for each of the flavors of
-PicoBSD as of version 0.4, as well as the lists of programs included.</p>
+PicoBSD as of version @VER@, as well as the lists of programs included.</p>
<h3>Dialup version:</h3>
<ul>
diff --git a/release/picobsd/doc/how2build.html b/release/picobsd/doc/src/how2build.html
index b5c0ec6..9b052d6 100644
--- a/release/picobsd/doc/how2build.html
+++ b/release/picobsd/doc/src/how2build.html
@@ -1,5 +1,5 @@
<html>
-<! $Id: how2build.html,v 1.2 1998/09/04 19:47:24 abial Exp $ >
+<! $Id: how2build.html,v 1.3 1998/09/11 13:14:33 abial Exp $ >
<head>
<title><center>PicoBSD Development Kit</center></title>
</head>
diff --git a/release/picobsd/doc/intrinsics.html b/release/picobsd/doc/src/intrinsics.html
index af5e9a8..cac4703 100644
--- a/release/picobsd/doc/intrinsics.html
+++ b/release/picobsd/doc/src/intrinsics.html
@@ -1,5 +1,5 @@
<html>
-<! $Id: intrinsics.html,v 1.2 1998/08/19 16:59:36 abial Exp $ >
+<! $Id: intrinsics.html,v 1.1.1.1 1998/08/27 17:38:42 abial Exp $ >
<head>
<title><center>Details of building process</center></title>
</head>
diff --git a/release/picobsd/doc/intro.html b/release/picobsd/doc/src/intro.html
index 7ecc3a2..0cb0d2e 100644
--- a/release/picobsd/doc/intro.html
+++ b/release/picobsd/doc/src/intro.html
@@ -1,5 +1,5 @@
<HTML>
-<! $Id: intro.html,v 1.6 1998/08/19 17:32:59 abial Exp $ >
+<! $Id: intro.html,v 1.3 1998/09/04 19:47:24 abial Exp $ >
<HEAD>
<TITLE>PicoBSD</TITLE>
</HEAD>
@@ -68,8 +68,8 @@ is required to run it is 386SX CPU with 8MB of RAM (no HDD!).
<p>Here you can find detailed <A HREF="hardware.html">list of supported
hardware and features</a>.
-<p>Current version of PicoBSD is 0.4, and this means that I consider it
-greatly immature, while on the other hand being somewhat tested and improved
+<p>Current version of PicoBSD is @VER@, and this means that I consider it
+still immature, while on the other hand being somewhat tested and improved
over previous versions. Does it tell you something? Well, at least you can
try it - I cannot guarantee that it doesn't burn your house or blow up your
machine, though the former is unlikely... :-)</p>
@@ -77,7 +77,6 @@ machine, though the former is unlikely... :-)</p>
<HR shade align="center">
<A NAME="where"><h3>Where can I get it?</h3>
-<p><A HREF="bugs.html">DON'T DOWNLOAD IT NOW! Wait a few days for a bugfix...</a></p>
<p>There are two language editions of PicoBSD - English and Polish one. You'll
be probably more interested in the former :-) The only difference is in
the set of fonts included, C locale, and the language of messages.</p>
OpenPOWER on IntegriCloud