mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: "Robert P. J. Day" <rpjday@crashcourse.ca>
Cc: "U-Boot Version 2 (barebox)" <barebox@lists.infradead.org>
Subject: Re: [PATCH] Documentation: defaultenv chapter from user manual.
Date: Fri, 4 Jul 2014 07:32:05 +0200	[thread overview]
Message-ID: <20140704053205.GB26384@pengutronix.de> (raw)
In-Reply-To: <alpine.LFD.2.11.1407030733400.21495@localhost>

On Thu, Jul 03, 2014 at 07:35:44AM -0400, Robert P. J. Day wrote:
> 
> A number of grammar fixes, typoes, font changes from the defaultenv-2
> chapter.
> 
> Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
> 
> ---
> 
>   some personal taste stuff on my part, feel free to object or suggest
> alternatives.

Looks good. Applied, thanks

Sascha

> 
> diff --git a/Documentation/user/defaultenv-2.rst b/Documentation/user/defaultenv-2.rst
> index fc3723e..faeeb81 100644
> --- a/Documentation/user/defaultenv-2.rst
> +++ b/Documentation/user/defaultenv-2.rst
> @@ -1,19 +1,21 @@
>  Default environment version 2
>  =============================
> 
> -barebox has its environment files under /env/. Most of the runtime configuration
> -takes place under /env/. The environment is comparable to a tar archive which is
> -unpacked from a storage medium during startup. If for whatever reason the environment
> -cannot be loaded from a storage medium, a compiled-in default environment is used
> -instead.
> +barebox stores its environment files under the top-level ``/env/``
> +directory, where most of the runtime configuration scripts are located.
> +This environment is comparable to a tar archive which is unpacked from
> +a storage medium during startup. If for whatever reason the environment
> +cannot be loaded from a storage medium, a compiled-in default environment
> +is used instead.
> 
>  The environment is not automatically stored on the storage medium when a file
> -under /env/ is changed, instead this has to be done manually using the
> +under ``/env/`` is changed; rather, this has to be done manually using the
>  :ref:`command_saveenv` command.
> 
> -There are two sets of generic environment files which can be used. The older one
> -should not be used for new boards and is not described here. New boards should use
> -defaultenv-2 instead.
> +There are two sets of generic environment files which can be used. The older
> +version (version one) should not be used for new boards and is not described here
> +(even though there are still numerous board definitions that use it).
> +All new boards should use defaultenv-2 exclusively.
> 
>  The default environment is composed from different directories during compilation::
> 
> @@ -25,27 +27,45 @@ The default environment is composed from different directories during compilatio
>  The content of the above directories is applied one after another. If the
>  same file exists in a later overlay, it will overwrite the preceding one.
> 
> +Note that not all of the above directories will necessarily be
> +included in your default environment, it depends on your barebox
> +configuration settings. You can see the configuration variables
> +and their respective included directories in ``defaultenv/Makefile``::
> +
> +  bbenv-$(CONFIG_DEFAULT_ENVIRONMENT_GENERIC_NEW) += defaultenv-2-base
> +  bbenv-$(CONFIG_DEFAULT_ENVIRONMENT_GENERIC_NEW_MENU) += defaultenv-2-menu
> +  bbenv-$(CONFIG_DEFAULT_ENVIRONMENT_GENERIC_NEW_DFU) += defaultenv-2-dfu
> +  bbenv-$(CONFIG_DEFAULT_ENVIRONMENT_GENERIC) += defaultenv-1
> +
>  /env/bin/init
>  -------------
> 
>  This script is executed by the barebox startup code after initialization.
> -In the defaultenv-2 it will add some global variables and executes the scripts
> -in /env/init/. It is also responsible for printing the boot timeout prompt.
> -Be careful with changes to this script: since it is executed before any user
> +In defaultenv-2, this script will define and set a number of global
> +variables, followed by sourcing all of the scripts in ``/env/init/`` with::
> +
> +  for i in /env/init/*; do
> +          . $i
> +  done
> +
> +This script is also responsible for defining the boot timeout value
> +(by default, three seconds), then printing the timeout prompt for the user.
> +Be careful making changes to this script: since it is executed before any user
>  intervention, it might lock the system.
> 
>  /env/init/
>  ----------
> 
> -/env/init/ is the place for startup scripts. The scripts in this directory
> -will be executed in alphabetical order by the /env/bin/init script.
> +The ``/env/init/`` directory is the location for startup scripts. The scripts
> +in this directory will be executed in alphabetical order by the
> +``/env/bin/init`` script described earlier.
> 
>  /env/boot/
>  ----------
> 
> -/env/boot/ contains boot entry scripts. the :ref:`command_boot` command treats
> -the files in this directory as possible boot targets. See :ref:`booting_linux`
> -for more details.
> +The ``/env/boot/`` directory contains boot entry scripts. The :ref:`command_boot`
> +command treats the files in this directory as possible boot targets.
> +See :ref:`booting_linux` for more details.
> 
>  /env/config
>  -----------
> 
> -- 
> 
> ========================================================================
> Robert P. J. Day                                 Ottawa, Ontario, CANADA
>                         http://crashcourse.ca
> 
> Twitter:                                       http://twitter.com/rpjday
> LinkedIn:                               http://ca.linkedin.com/in/rpjday
> ========================================================================
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

      reply	other threads:[~2014-07-04  5:32 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-03 11:35 Robert P. J. Day
2014-07-04  5:32 ` Sascha Hauer [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140704053205.GB26384@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    --cc=rpjday@crashcourse.ca \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox