summaryrefslogtreecommitdiffstats
path: root/docs/manual
diff options
context:
space:
mode:
Diffstat (limited to 'docs/manual')
-rw-r--r--docs/manual/adding-packages-autotools.txt2
-rw-r--r--docs/manual/adding-packages-directory.txt5
-rw-r--r--docs/manual/customize-outside-br.txt1
-rw-r--r--docs/manual/customize-patches.txt1
-rw-r--r--docs/manual/faq-troubleshooting.txt8
-rw-r--r--docs/manual/makedev-syntax.txt24
-rw-r--r--docs/manual/makeusers-syntax.txt1
-rw-r--r--docs/manual/resources.txt2
8 files changed, 27 insertions, 17 deletions
diff --git a/docs/manual/adding-packages-autotools.txt b/docs/manual/adding-packages-autotools.txt
index ece6c49563..a041d91eb6 100644
--- a/docs/manual/adding-packages-autotools.txt
+++ b/docs/manual/adding-packages-autotools.txt
@@ -125,7 +125,7 @@ cases, typical packages will therefore only use a few of them.
variables to pass to the 'autoreconf' program if
+LIBFOO_AUTORECONF=YES+. These are passed in the environment of
the 'autoreconf' command. By default, empty.
-
+
* +LIBFOO_AUTORECONF_OPTS+ to specify additional options
passed to the 'autoreconf' program if
+LIBFOO_AUTORECONF=YES+. By default, empty.
diff --git a/docs/manual/adding-packages-directory.txt b/docs/manual/adding-packages-directory.txt
index c145829fcb..0ea03f9153 100644
--- a/docs/manual/adding-packages-directory.txt
+++ b/docs/manual/adding-packages-directory.txt
@@ -191,15 +191,19 @@ construct rather than repeating the +depends on+ statement on the
comment and other config options.
The general format of a dependency +comment+ for package foo is:
+
--------------------------
foo needs a toolchain w/ featA, featB, featC
--------------------------
for example:
+
--------------------------
aircrack-ng needs a toolchain w/ largefile, threads
--------------------------
+
or
+
--------------------------
crda needs a toolchain w/ threads
--------------------------
@@ -283,6 +287,7 @@ foo needs a Linux kernel to be built
If there is a dependency on both toolchain options and the Linux
kernel, use this format:
+
--------------------------
foo needs a toolchain w/ featA, featB, featC and a Linux kernel to be built
--------------------------
diff --git a/docs/manual/customize-outside-br.txt b/docs/manual/customize-outside-br.txt
index 110984308f..5d63e60bdf 100644
--- a/docs/manual/customize-outside-br.txt
+++ b/docs/manual/customize-outside-br.txt
@@ -1,4 +1,5 @@
// -*- mode:doc -*- ;
+// vim: set syntax=asciidoc:
[[outside-br-custom]]
=== Keeping customizations outside of Buildroot
diff --git a/docs/manual/customize-patches.txt b/docs/manual/customize-patches.txt
index a052915dfd..e129a64855 100644
--- a/docs/manual/customize-patches.txt
+++ b/docs/manual/customize-patches.txt
@@ -1,4 +1,5 @@
// -*- mode:doc -*- ;
+// vim: set syntax=asciidoc:
[[customize-patches]]
=== Adding project-specific patches
diff --git a/docs/manual/faq-troubleshooting.txt b/docs/manual/faq-troubleshooting.txt
index 693028c4da..b30b4ac43c 100644
--- a/docs/manual/faq-troubleshooting.txt
+++ b/docs/manual/faq-troubleshooting.txt
@@ -19,10 +19,10 @@ Starting dropbear sshd: generating rsa key... generating dsa key... OK
then it means that your system is running, but didn't start a shell on
the serial console. In order to have the system start a shell on your
-serial console, you have to go into the Buildroot configuration, in
-+System configuration+, modify +Run a getty (login prompt) after boot+
-and set the appropriate port and baud rate in the +getty options+
-submenu. This will automatically tune the +/etc/inittab+ file of the
+serial console, you have to go into the Buildroot configuration, in
++System configuration+, modify +Run a getty (login prompt) after boot+
+and set the appropriate port and baud rate in the +getty options+
+submenu. This will automatically tune the +/etc/inittab+ file of the
generated system so that a shell starts on the correct serial port.
[[faq-no-compiler-on-target]]
diff --git a/docs/manual/makedev-syntax.txt b/docs/manual/makedev-syntax.txt
index 2fd7b59151..e02b79d986 100644
--- a/docs/manual/makedev-syntax.txt
+++ b/docs/manual/makedev-syntax.txt
@@ -11,13 +11,14 @@ create and how to create them, in order to avoid calls to mknod.
This syntax is derived from the makedev utility, and more complete
documentation can be found in the +package/makedevs/README+ file.
-It takes the form of a line for each file, with the following layout:
+It takes the form of a space separated list of fields, one file per
+line; the fields are:
|===========================================================
|name |type |mode |uid |gid |major |minor |start |inc |count
|===========================================================
-There are a few non-trivial blocks here:
+There are a few non-trivial blocks:
- +name+ is the path to the file you want to create/modify
- +type+ is the type of the file, being one of:
@@ -35,22 +36,23 @@ There are a few non-trivial blocks here:
Let's say you want to change the permissions of a given file; using
this syntax, you will need to put:
--------------------------------------------------------------------
-/usr/bin/foobar f 644 0 0 - - - - -
--------------------------------------------------------------------
+
+----
+/usr/bin/foobar f 644 0 0 - - - - -
+----
On the other hand, if you want to create the device file +/dev/hda+
and the corresponding 15 files for the partitions, you will need for
+/dev/hda+:
--------------------------------------------------------------------
-/dev/hda b 640 0 0 3 0 0 0 -
--------------------------------------------------------------------
+----
+/dev/hda b 640 0 0 3 0 0 0 -
+----
and then for device files corresponding to the partitions of
+/dev/hda+, +/dev/hdaX+, +X+ ranging from 1 to 15:
--------------------------------------------------------------------
-/dev/hda b 640 0 0 3 1 1 1 15
--------------------------------------------------------------------
+----
+/dev/hda b 640 0 0 3 1 1 1 15
+----
diff --git a/docs/manual/makeusers-syntax.txt b/docs/manual/makeusers-syntax.txt
index ecf3eb040a..ffdb961871 100644
--- a/docs/manual/makeusers-syntax.txt
+++ b/docs/manual/makeusers-syntax.txt
@@ -1,4 +1,5 @@
// -*- mode:doc -*- ;
+// vim: set syntax=asciidoc:
[[makeuser-syntax]]
== Makeusers syntax documentation
diff --git a/docs/manual/resources.txt b/docs/manual/resources.txt
index b11053ee1b..b327f9e956 100644
--- a/docs/manual/resources.txt
+++ b/docs/manual/resources.txt
@@ -60,7 +60,7 @@ project. Patches that have been sent to a mailing list are \'caught' by
the system, and appear on a web page. Any comments posted that
reference the patch are appended to the patch page too. For more
information on Patchwork see
-http://jk.ozlabs.org/projects/patchwork[].
+http://jk.ozlabs.org/projects/patchwork/[].
+
Buildroot's Patchwork website is mainly for use by Buildroot's
maintainer to ensure patches aren't missed. It is also used by Buildroot
OpenPOWER on IntegriCloud