summaryrefslogtreecommitdiff
path: root/docs/contributing
diff options
context:
space:
mode:
Diffstat (limited to 'docs/contributing')
-rw-r--r--docs/contributing/build-vyos.rst4
-rw-r--r--docs/contributing/development.rst1
2 files changed, 3 insertions, 2 deletions
diff --git a/docs/contributing/build-vyos.rst b/docs/contributing/build-vyos.rst
index 302f828c..51400eaf 100644
--- a/docs/contributing/build-vyos.rst
+++ b/docs/contributing/build-vyos.rst
@@ -249,7 +249,7 @@ Executed from the root of `vyos-build`
.. code-block:: none
- $ docker run --rm -it -v $(pwd):/vyos -w /vyos/packages/PACKAGENAME \
+ $ docker run --rm -it -v $(pwd):/vyos -w /vyos \
--sysctl net.ipv6.conf.lo.disable_ipv6=0 \
vyos-builder scripts/build-packages -b <package>
@@ -278,7 +278,7 @@ Example using `git@github.com:myname/vyos-1x.git` repository to build vyos-1x:
$ cd packages
$ git clone git@github.com:myname/vyos-1x.git
$ cd ..
- $ docker run --rm -it -v $(pwd):/vyos -w /vyos/packages/PACKAGENAME \
+ $ docker run --rm -it -v $(pwd):/vyos -w /vyos \
--sysctl net.ipv6.conf.lo.disable_ipv6=0 \
vyos-builder scripts/build-packages -b vyos-1x
diff --git a/docs/contributing/development.rst b/docs/contributing/development.rst
index 93168366..4a181499 100644
--- a/docs/contributing/development.rst
+++ b/docs/contributing/development.rst
@@ -694,6 +694,7 @@ Kernel boot parameters
CLI. In this circumstance, the kernel boot parameter ``vyos-config-debug``
will ensure access to the system as user ``vyos``, and will log a Python
stack trace to the file ``/tmp/boot-config-trace``.
+ File ``boot-config-trace`` will generate only if config loaded with a failure status.
Debugging features
------------------