diff options
author | John Crispin <blogic@openwrt.org> | 2015-11-24 20:41:30 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-11-24 20:41:30 +0000 |
commit | c3b118ae69b3168be3602a6782084638b0422ddd (patch) | |
tree | 60440615c4eb3bcffc45cfef2c14c40985cdc3d0 /package/network/config/ltq-vdsl-app/patches/010-warnings.patch | |
parent | c32e23ddb86856918343f099e29c1ac00f351a75 (diff) | |
download | master-187ad058-c3b118ae69b3168be3602a6782084638b0422ddd.tar.gz master-187ad058-c3b118ae69b3168be3602a6782084638b0422ddd.tar.bz2 master-187ad058-c3b118ae69b3168be3602a6782084638b0422ddd.zip |
lantiq: ltq-vdsl-app: update to version 4.16.6.3
In this upstream dsl driver app version the autoboot is deactivated activate
it again.
In addition to the update this also fixes some build warnings and makes it
use the same configure option as used in Lantiq UGW.
Signed-off-by: Hauke Mehrtens <hauke.mehrtens@lantiq.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47637 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/network/config/ltq-vdsl-app/patches/010-warnings.patch')
-rw-r--r-- | package/network/config/ltq-vdsl-app/patches/010-warnings.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/package/network/config/ltq-vdsl-app/patches/010-warnings.patch b/package/network/config/ltq-vdsl-app/patches/010-warnings.patch new file mode 100644 index 0000000000..96d8319e59 --- /dev/null +++ b/package/network/config/ltq-vdsl-app/patches/010-warnings.patch @@ -0,0 +1,23 @@ +--- a/src/dsl_cpe_os.h ++++ b/src/dsl_cpe_os.h +@@ -31,15 +31,15 @@ + #ifndef _lint + #ifdef LINUX + #include "dsl_cpe_linux.h" +-#elif WIN32 ++#elif defined(WIN32) + #include "dsl_cpe_win32.h" +-#elif VXWORKS ++#elif defined(VXWORKS) + #include "dsl_cpe_vxworks.h" +-#elif ECOS ++#elif defined(ECOS) + #include "dsl_cpe_ecos.h" +-#elif RTEMS ++#elif defined(RTEMS) + #include "dsl_cpe_rtems.h" +-#elif GENERIC_OS ++#elif defined(GENERIC_OS) + #include "dsl_cpe_generic_os.h" + #else + #error please define your OS for the CPE Control adaptation |