Subject: [docathon] converted Ports/pmppc/faq.list
To: None <netbsd-docs@netbsd.org>
From: None <dsieger@techfak.uni-bielefeld.de>
List: netbsd-docs
Date: 04/07/2007 00:13:05
--JIpyCmsTxyPLrmrM
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

Ports/pmppc/faq.list converted. patch attached.

Note: If you're committing a patch, please be sure to update the
according status entry at 

http://wiki.netbsd.se/index.php/Hackathon5#List_of_.list_files

Thanks,
Daniel

-- 
Daniel Sieger
Faculty of Technology
Bielefeld University
wwwhomes.uni-bielefeld.de/dsieger

--JIpyCmsTxyPLrmrM
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="pmppc-faq.diff"

Index: layout.xml
===================================================================
RCS file: /cvsroot/htdocs/layout.xml,v
retrieving revision 1.244
diff -u -r1.244 layout.xml
--- layout.xml	6 Apr 2007 21:14:26 -0000	1.244
+++ layout.xml	6 Apr 2007 22:10:43 -0000
@@ -291,6 +291,7 @@
         <tocentry page="Ports/next68k/faq.xml" filename="faq.html"/>
       </tocentry>
       <tocentry page="Ports/pc532/faq.xml" dir="pc532" filename="faq.html"/>
+      <tocentry page="Ports/pmppc/faq.xml" dir="pmppc" filename="faq.html"/>
       <tocentry page="Ports/playstation2/faq.xml" dir="playstation2" filename="faq.html"/>
       <tocentry page="Ports/prep/index.xml" dir="prep"  filename="."/>
       <tocentry page="Ports/s390/index.xml" dir="s390" filename="."/>
Index: Ports/pmppc/Makefile
===================================================================
RCS file: /cvsroot/htdocs/Ports/pmppc/Makefile,v
retrieving revision 1.4
diff -u -r1.4 Makefile
--- Ports/pmppc/Makefile	14 Oct 2005 08:59:58 -0000	1.4
+++ Ports/pmppc/Makefile	6 Apr 2007 22:10:43 -0000
@@ -1,5 +1,5 @@
 #	$NetBSD: Makefile,v 1.4 2005/10/14 08:59:58 rillig Exp $
 
-LISTDOCS+=	faq.list
+XMLDOCS+=	faq
 
 .include "../../share/mk/web.site.mk"
Index: Ports/pmppc/faq.xml
===================================================================
RCS file: Ports/pmppc/faq.xml
diff -N Ports/pmppc/faq.xml
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ Ports/pmppc/faq.xml	6 Apr 2007 22:10:43 -0000
@@ -0,0 +1,102 @@
+<?xml version="1.0"?>
+<!DOCTYPE webpage
+ PUBLIC "-//NetBSD//DTD Website-based NetBSD Extension//EN"
+        "http://www.NetBSD.org/share/xml/website-netbsd.dtd">
+
+<webpage id="Port-pmppc-faq">
+<config param="desc" value="NetBSD/pmppc Frequently Asked Questions"/>
+<config param="cvstag" value="$NetBSD$"/>
+<config param="rcsdate" value="$Date$"/>
+<head>
+
+<!-- Copyright (c) 1998-2007
+	The NetBSD Foundation, Inc.  ALL RIGHTS RESERVED. -->
+
+<title>&os;/pmppc Frequently Asked Questions</title>
+</head>
+
+<sect1 role="toc">
+<title>&os;/pmppc Frequently Asked Questions</title>
+
+<sect2 id="intro">
+<title>Introduction</title>
+<sect3 id="about">
+<title>About this FAQ</title>
+<para>
+Here are some frequently asked questions (and answers) about
+&os;/pmppc.
+</para>
+<para>
+This FAQ is very much a work in progress. If you have additional
+information, questions, or answers, send mail to
+<email>port-pmppc@NetBSD.org</email>.
+</para>
+</sect3>
+</sect2>
+
+<sect2 id="general">
+<title>General Problems/Questions</title>
+
+<sect3 id="booting">
+<title>How do I boot &os;?</title>
+<para>
+&os; is booted over the network.  You need two things, a TFTP
+server to load the kernel image and an NFS server for the file
+systems.</para>
+<para>
+The &os; kernel has been relocated for loading at address 0x40000,
+so the Artesyn monitor has to be set up for this load address.  Use
+the monitor commands <command>nvdisplay</command> and
+<command>nvupdate</command> to configure the boot parameters, and
+<command>boottftp</command> to boot.</para>
+</sect3>
+
+<sect3 id="pci">
+<title>Can &os; configure the PCI devices?</title>
+<para>
+&os; can configure the PCI devices if the option PCI_NETBSD_CONFIGURE
+is used.  This may not work if the firmware also configures
+the devices.  The firmware configuration can be turned off
+using <command>nvdisplay</command>.</para>
+</sect3>
+
+<sect3 id="flash">
+<title>Can the &os; kernel be flashed?</title>
+<para>
+Yes, the same kernel that is booted over TFTP can be flashed.
+The steps are:</para>
+<itemizedlist>
+<listitem><para> Get the kernel into memory:</para>
+<screen> tftp_get kernel-name 40000</screen>
+</listitem>
+<listitem><para> Write it to flash.  The size of the kernel is reported by tftp_get.
+Use it in the command to copy from RAM to flash:</para>
+<screen> flashblkwr 40000 70000000 size</screen>
+</listitem>
+<listitem><para> Use <command>nvdisplay</command> to make sure that <varname>CopyToLoadAdr</varname> is
+set, that <varname>RomBase=70000000</varname>, and that <varname>RomSize</varname> is large
+enough to copy the whole kernel.</para>
+</listitem>
+</itemizedlist>
+</sect3>
+</sect2>
+
+<sect2 id="other_info">
+<title>Other sources of information</title>
+
+<sect3 id="other_info_nbsd">
+<title>Other information at NetBSD.org</title>
+<itemizedlist>
+<listitem><para><ulink
+url="../../Documentation/network/netboot/">Diskless NetBSD HOW-TO</ulink>.</para></listitem>
+<listitem><para><ulink url="../../Documentation/Hardware/Misc/serial.html">NetBSD Serial 
+Port Primer</ulink></para></listitem>
+<listitem><para><ulink url="../../Documentation/">General NetBSD Documentation</ulink>
+    - for questions not specific to NetBSD/pmppc.</para></listitem>
+</itemizedlist>
+</sect3>
+</sect2>
+</sect1>
+
+<parentsec url="./" text="NetBSD/pmppc ports page"/>
+</webpage>

--JIpyCmsTxyPLrmrM--