From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas De Schampheleire Date: Wed, 20 Aug 2014 21:39:53 +0200 Subject: [Buildroot] [PATCH 2 of 3 for 2014.08] manual: file organization: avoid unnecessary indirection In-Reply-To: References: Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net Some source files of the manual merely contain inclusion of other files. Especially at top-level this is unnecessary, and one could just as well add these includes in manual.txt. Signed-off-by: Thomas De Schampheleire --- docs/manual/developer-guide.txt | 12 ------------ docs/manual/manual.txt | 24 +++++++++++++++++++++--- docs/manual/starting-up.txt | 9 --------- docs/manual/working-with.txt | 13 ------------- 4 files changed, 21 insertions(+), 37 deletions(-) diff --git a/docs/manual/developer-guide.txt b/docs/manual/developer-guide.txt deleted file mode 100644 --- a/docs/manual/developer-guide.txt +++ /dev/null @@ -1,12 +0,0 @@ -// -*- mode:doc; -*- -// vim: set syntax=asciidoc: - -include::writing-rules.txt[] - -include::adding-packages.txt[] - -include::patch-policy.txt[] - -include::download-infra.txt[] - -include::debugging-buildroot.txt[] diff --git a/docs/manual/manual.txt b/docs/manual/manual.txt --- a/docs/manual/manual.txt +++ b/docs/manual/manual.txt @@ -20,13 +20,23 @@ include::introduction.txt[] -include::starting-up.txt[] +include::prerequisite.txt[] + +include::getting.txt[] + +include::using.txt[] include::get-involved.txt[] = User guide -include::working-with.txt[] +include::configure.txt[] + +include::configure-other-components.txt[] + +include::common-usage.txt[] + +include::customize.txt[] include::faq-troubleshooting.txt[] @@ -40,7 +50,15 @@ include::how-buildroot-works.txt[] -include::developer-guide.txt[] +include::writing-rules.txt[] + +include::adding-packages.txt[] + +include::patch-policy.txt[] + +include::download-infra.txt[] + +include::debugging-buildroot.txt[] include::contribute.txt[] diff --git a/docs/manual/starting-up.txt b/docs/manual/starting-up.txt deleted file mode 100644 --- a/docs/manual/starting-up.txt +++ /dev/null @@ -1,9 +0,0 @@ -// -*- mode:doc; -*- -// vim: set syntax=asciidoc: - -include::prerequisite.txt[] - -include::getting.txt[] - -include::using.txt[] - diff --git a/docs/manual/working-with.txt b/docs/manual/working-with.txt deleted file mode 100644 --- a/docs/manual/working-with.txt +++ /dev/null @@ -1,13 +0,0 @@ -// -*- mode:doc; -*- -// vim: set syntax=asciidoc: - -This section explains how you can customize Buildroot to fit your -needs. - -include::configure.txt[] - -include::configure-other-components.txt[] - -include::common-usage.txt[] - -include::customize.txt[]