aboutsummaryrefslogtreecommitdiffstats
path: root/docs/openwrt.tex
blob: 2c07052dac3816d51ebcd513449857bc1d154a2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
\documentclass[a4paper]{book}
\usepackage[latin9]{inputenc}
\usepackage[bookmarks=true]{hyperref}
\usepackage[T1]{fontenc}
\usepackage{ae,aecompl,aeguill}
\usepackage{fancyvrb}
\setlength{\parindent}{0pt}
\setlength{\parskip}\medskipamount

\begin{document}
\tableofcontents
\chapter{The Router}
  \section{Getting started}
    \subsection{Installation}
    \subsection{Initial configuration}
    \subsection{Failsafe mode}
  \section{Configuring OpenWrt}
    \subsection{Network}
      \input{network}
    \subsection{Wireless}
      \input{wireless}
  \section{Advanced configuration}
    \input{config}
    \subsection{Hotplug}
    \subsection{Init scripts}
      \input{init-scripts}
    \subsection{Network scripts}
      \input{network-scripts}
\chapter{Development issues}
  \section{The build system}
    \input{build}
  \section{Extra tools}
    \subsection{Image Builder}
    \subsection{SDK}
  \section{Adding platform support}
     \input{adding}
  \section{Debugging and debricking}
    \subsection{Adding a serial port}
    \subsection{JTAG}
   \section{Reporting bugs}
	\subsection{Using the Trac ticket system}
	\input{bugs}
\end{document}
an class="nf">Create; procedure Resize (Seg : in out Memseg_Type; Size : Natural) is begin if Seg.Size = 0 then Seg.Base := Mmap_Malloc (Size); else Seg.Base := Mmap_Realloc (Seg.Base, Seg.Size, Size); end if; Seg.Size := Size; end Resize; function Get_Address (Seg : Memseg_Type) return Address is begin return Seg.Base; end Get_Address; procedure Delete (Seg : in out Memseg_Type) is begin Mmap_Free (Seg.Base, Seg.Size); Seg.Base := Null_Address; Seg.Size := 0; end Delete; procedure Set_Rx (Seg : in out Memseg_Type) is begin Mmap_Rx (Seg.Base, Seg.Size); end Set_Rx; end Memsegs_Mmap;