diff options
author | wdenk <wdenk> | 2005-01-09 23:33:49 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-01-09 23:33:49 +0000 |
commit | 6225c5db6cb5a727cbf795678b857b3b66ba0911 (patch) | |
tree | e3ce1a368cde856155fc52c37e1c6507e25ea977 /common | |
parent | 8ed9604613398660f9ee855060661da8809d4045 (diff) |
* Patch by Sam Song, 11 October 2004:
- Add RESET/PREBOOT/AUTOBOOT support for RPXlite_DW board
- Adjust CPU:BUS frequency ratio 1:1 when core frequency
less than 50MHz
* Patch by Sam Song, 10 Oct 2004:
Fix a parameter error in run_command() in main.c
Diffstat (limited to 'common')
-rw-r--r-- | common/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/main.c b/common/main.c index 0869426f17d..9f649dbcd31 100644 --- a/common/main.c +++ b/common/main.c @@ -432,7 +432,7 @@ void main_loop (void) s = getenv("menucmd"); if (s) { # ifndef CFG_HUSH_PARSER - run_command (s, bd, 0); + run_command (s, 0); # else parse_string_outer(s, FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP); |