diff options
Diffstat (limited to 'docs/buildroot.html')
-rw-r--r-- | docs/buildroot.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/buildroot.html b/docs/buildroot.html index abd4d265a..b02ee3d6c 100644 --- a/docs/buildroot.html +++ b/docs/buildroot.html @@ -247,6 +247,7 @@ <li>HOSTCC</li> <li>UCLIBC_CONFIG_FILE=<path/to/.config></li> <li>BUSYBOX_CONFIG_FILE=<path/to/.config></li> + <li>BUILDROOT_COPYTO</li> <li>BUILDROOT_DL_DIR</li> <li>BUILDROOT_LOCAL</li> <li>BUILDROOT_USE_XWINDOWS</li> @@ -264,6 +265,16 @@ $ make UCLIBC_CONFIG_FILE=uClibc.config BUSYBOX_CONFIG_FILE=$HOME/bb.config $ make HOSTCXX=g++-4.3-HEAD HOSTCC=gcc-4.3-HEAD </pre> + <p>If you want the result of your build to be copied to another directory + like /tftpboot for downloading to a board using tftp, then you + can use BUILDROOT_COPYTO to specify your location</p> + <p>Typically, this is set in your ~/.bashrc file + +<pre> +$ export BUILDROOT_COPYTO=/tftpboot +</pre> + + <h3><a name="helper_completion" id="helper_completion"></a> Using auto-completion</h3> |