diff --git a/docs/buildroot.html b/docs/buildroot.html index 98a91e5924..c71b50a198 100644 --- a/docs/buildroot.html +++ b/docs/buildroot.html @@ -202,6 +202,33 @@ $ make UCLIBC_CONFIG_FILE=uClibc.config BUSYBOX_CONFIG_FILE=$HOME/bb.config $ make HOSTCXX=g++-4.3-HEAD HOSTCC=gcc-4.3-HEAD +
If you are lazy enough that you don't want to type the entire make + menuconfig command line, you can enable auto-completion in your shell. + Here is how you can do that using bash:
++$ complete -W menuconfig make ++ +
Then just enter the begining of the line, and ask bash to + complete it for you by pressing the TAB key:
++$ make me<TAB> ++ +
will result in bash to append nuconfig for you!
+ +Alternatively, some distributions (of which Debian and Mandriva are but + an example) have more powerful make completion. Depending on you + distribution, you may have to install a package to enable completion. Under + Mandriva, this is bash-completion, while Debian ships it as part of + the bash package.
+ +Other shells, such as zsh, also have completion facilities. See + the documentation for your shell.
+