Re: [LEDE-DEV] [PATCH v2 5/5] mtd-utils: activate --gc-sections

2018-04-21 Thread Koen Vandeputte
Tested-by: Koen Vandeputte Tested on imx6, also using the imagebuilder afterwards. ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] [PATCH v2 4/5] mtd-utils: update to 2.0.2

2018-04-21 Thread Koen Vandeputte
Tested-by: Koen Vandeputte Tested on imx6, also using the imagebuilder afterwards. ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] [PATCH v2 3/5] tools/mtd-utils: update to version 2.0.2

2018-04-21 Thread Koen Vandeputte
Tested-by: Koen Vandeputte Tested on imx6, also using the imagebuilder afterwards. ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] [PATCH v2 2/5] tools/mtd-utils: Mark some lzma functions as static

2018-04-21 Thread Koen Vandeputte
Tested-by: Koen Vandeputte Tested on imx6, also using the imagebuilder afterwards. ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] [PATCH v2 1/5] tools/zlib: move zlib build to tools

2018-04-21 Thread Koen Vandeputte
Tested-by: Koen Vandeputte Tested on imx6, also using the imagebuilder afterwards. ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

Re: [LEDE-DEV] [PATCH 1/5] tools/zlib: move zlib build to tools

2018-04-21 Thread Koen Vandeputte
Previously I mentioned the following issue on imx6 (ubi): - Make owrt build - Add custom files using imagebuilder - Flash (jtag or tftp via uboot) - Boot 1st time (all is OK) - Boot 2nd time (custom files are corrupt now) After testing this a few times using JTAG on the same board (which had

[LEDE-DEV] [PATCH] 17:01 gcc: gcc 6.3.0 fix comparison between pointer and integer

2018-04-21 Thread Etienne Haarsma
Cherry picked from trunk. Signed-off-by: Etienne Haarsma --- toolchain/gcc/patches/6.3.0/960-fix-ubsan-defref.patch | 11 +++ 1 file changed, 11 insertions(+) create mode 100644 toolchain/gcc/patches/6.3.0/960-fix-ubsan-defref.patch diff --git a/toolchain/gcc/patches/6.3.0/960-fix-ubsa

[LEDE-DEV] [PATCH] dhcpv6: Fix strncpy bounds and initialize struct to 0

2018-04-21 Thread Khem Raj
Fixes dhcpv6.c:141:2: error: 'strncpy' specified bound 16 equals destination size [-Werror=stringop-truncation] strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name)); Signed-off-by: Khem Raj --