mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
moveconfig: Tidy up the documentation and add hints
The newest clean-up features are not mentioned in the docs. Fix this and add a few hints for particular workflows that are hopefully helpful. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -115,6 +115,23 @@ use your own. Instead of modifying the list directly, you can give
|
|||||||
them via environments.
|
them via environments.
|
||||||
|
|
||||||
|
|
||||||
|
Tips and trips
|
||||||
|
--------------
|
||||||
|
|
||||||
|
To sync only X86 defconfigs:
|
||||||
|
|
||||||
|
./tools/moveconfig.py -s -d <(grep -l X86 configs/*)
|
||||||
|
|
||||||
|
or:
|
||||||
|
|
||||||
|
grep -l X86 configs/* | ./tools/moveconfig.py -s -d -
|
||||||
|
|
||||||
|
To process CONFIG_CMD_FPGAD only for a subset of configs based on path match:
|
||||||
|
|
||||||
|
ls configs/{hrcon*,iocon*,strider*} | \
|
||||||
|
./tools/moveconfig.py -Cy CONFIG_CMD_FPGAD -d -
|
||||||
|
|
||||||
|
|
||||||
Available options
|
Available options
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
@@ -128,7 +145,7 @@ Available options
|
|||||||
|
|
||||||
-d, --defconfigs
|
-d, --defconfigs
|
||||||
Specify a file containing a list of defconfigs to move. The defconfig
|
Specify a file containing a list of defconfigs to move. The defconfig
|
||||||
files can be given with shell-style wildcards.
|
files can be given with shell-style wildcards. Use '-' to read from stdin.
|
||||||
|
|
||||||
-n, --dry-run
|
-n, --dry-run
|
||||||
Perform a trial run that does not make any changes. It is useful to
|
Perform a trial run that does not make any changes. It is useful to
|
||||||
@@ -169,7 +186,8 @@ Available options
|
|||||||
|
|
||||||
-y, --yes
|
-y, --yes
|
||||||
Instead of prompting, automatically go ahead with all operations. This
|
Instead of prompting, automatically go ahead with all operations. This
|
||||||
includes cleaning up headers and CONFIG_SYS_EXTRA_OPTIONS.
|
includes cleaning up headers, CONFIG_SYS_EXTRA_OPTIONS, the config whitelist
|
||||||
|
and the README.
|
||||||
|
|
||||||
To see the complete list of supported options, run
|
To see the complete list of supported options, run
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user