Skip to content
Snippets Groups Projects
Commit b453960d authored by Jon Loeliger's avatar Jon Loeliger Committed by Wolfgang Denk
Browse files

common/ non-cmd: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).


This is a compatibility step that allows both the older form
and the new form to co-exist for a while until the older can
be removed entirely.

All transformations are of the form:
Before:
    #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
After:
    #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)

Signed-off-by: default avatarJon Loeliger <jdl@freescale.com>
parent 65c450b4
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment