diff options
author | Ralph Hempel <ralph.hempel@lantiq.com> | 2010-04-24 06:03:31 +0000 |
---|---|---|
committer | Ralph Hempel <ralph.hempel@lantiq.com> | 2010-04-24 06:03:31 +0000 |
commit | 5f643ca7dc2fe4afcdbcb4bf7b30ce23ec23eff5 (patch) | |
tree | d46231902cfff6c8f068c22f7cc583b7446e363f /package/uboot-lantiq/patches | |
parent | acb329137e21c7dd05e17aadce4d5840ddee55c9 (diff) | |
download | upstream-5f643ca7dc2fe4afcdbcb4bf7b30ce23ec23eff5.tar.gz upstream-5f643ca7dc2fe4afcdbcb4bf7b30ce23ec23eff5.tar.bz2 upstream-5f643ca7dc2fe4afcdbcb4bf7b30ce23ec23eff5.zip |
fix command line buffer length, fixes mtdparts
SVN-Revision: 21117
Diffstat (limited to 'package/uboot-lantiq/patches')
-rw-r--r-- | package/uboot-lantiq/patches/300-httpd.patch | 2 | ||||
-rw-r--r-- | package/uboot-lantiq/patches/310-fix-httpd.patch | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/uboot-lantiq/patches/300-httpd.patch b/package/uboot-lantiq/patches/300-httpd.patch index d244e2d42c..8c4c1ffb6e 100644 --- a/package/uboot-lantiq/patches/300-httpd.patch +++ b/package/uboot-lantiq/patches/300-httpd.patch @@ -12,7 +12,7 @@ + +U_BOOT_CMD( + httpd, 1, 1, do_httpd, -+ "httpd\t- start webserver\n", "\n" ++ "httpd\t- start webserver", "" +); +#endif + diff --git a/package/uboot-lantiq/patches/310-fix-httpd.patch b/package/uboot-lantiq/patches/310-fix-httpd.patch index 51a96fc588..b27ed5859a 100644 --- a/package/uboot-lantiq/patches/310-fix-httpd.patch +++ b/package/uboot-lantiq/patches/310-fix-httpd.patch @@ -35,7 +35,7 @@ # endif +# ifdef CONFIG_CMD_HTTPD -+ if (ret < 0) { ++ if (ret != 0) { + printf("Failed to execute bootcmd " + "(maybe invalid u-boot environment?), " + "starting httpd to update firmware...\n"); |