summaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2015-03-18 09:51:16 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2015-03-18 09:51:18 +0100
commitccee789e67127ff21f6e58184bcbd01ce9546014 (patch)
tree6852e58544715f8f2f54853f11a4922ccfa74f0a /Documentation
parenta76c62f80d95860e6c5904ab5cb91667c43f61eb (diff)
downloadbarebox-ccee789e67127ff21f6e58184bcbd01ce9546014.tar.gz
barebox-ccee789e67127ff21f6e58184bcbd01ce9546014.tar.xz
Documentation: booting-linux: Fix wrong variable name
All variables starting with global.linux.bootargs. are concatemated to bootargs, not global.bootargs. . Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/user/booting-linux.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/user/booting-linux.rst b/Documentation/user/booting-linux.rst
index 3a8da11fd5..5ef1254d46 100644
--- a/Documentation/user/booting-linux.rst
+++ b/Documentation/user/booting-linux.rst
@@ -60,7 +60,7 @@ are to ways to pass bootargs to the Kernel. With ``CONFIG_FLEXIBLE_BOOTARGS``
disabled the bootm command takes the bootargs from the ``bootargs`` environment
variable. With ``CONFIG_FLEXIBLE_BOOTARGS`` enabled the bootargs are composed
from different :ref:`global_device` variables. All variables beginning with
-``global.bootargs.`` will be concatenated to the bootargs:
+``global.linux.bootargs.`` will be concatenated to the bootargs:
.. code-block:: sh