diff options
author | Jon Loeliger <jdl@freescale.com> | 2007-07-08 18:10:08 -0500 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2007-07-08 18:10:08 -0500 |
commit | c3517f919d0f61650cf3027fd4faf0f631142f6c (patch) | |
tree | 182ef6971f28188af968fea9fe74ccc5f594d44a /common/hush.c | |
parent | fd9bcaa35be64fe41a4223fdb6ecdbad52470b39 (diff) | |
download | u-boot-midas-c3517f919d0f61650cf3027fd4faf0f631142f6c.tar.gz u-boot-midas-c3517f919d0f61650cf3027fd4faf0f631142f6c.tar.bz2 u-boot-midas-c3517f919d0f61650cf3027fd4faf0f631142f6c.zip |
common/* non-cmd*: Remove obsolete references to CONFIG_COMMANDS
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'common/hush.c')
-rw-r--r-- | common/hush.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/hush.c b/common/hush.c index 4ddbc64d2e..bb6585e9ac 100644 --- a/common/hush.c +++ b/common/hush.c @@ -1682,7 +1682,7 @@ static int run_pipe_real(struct pipe *pi) return -1; /* give up after bad command */ } else { int rcode; -#if (CONFIG_COMMANDS & CFG_CMD_BOOTD) || defined(CONFIG_CMD_BOOTD) +#if defined(CONFIG_CMD_BOOTD) extern int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]); /* avoid "bootd" recursion */ |